hyvor / php-svg-icons
PHP SVG Icons Library
Installs: 1 851
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: ^8.1
- ext-simplexml: *
Requires (Dev)
- pestphp/pest: ^1.21
- phpstan/phpstan: ^1.6
This package is auto-updated.
Last update: 2024-11-09 09:41:46 UTC
README
Installation:
composer require hyvor/php-svg-icons
Format:
$icon = new Icon($library, $iconName); $svg = $icon->getSvg($width, $height);
Example:
$icon = new Icon('bootstrap', '123'); $icon->getSvg(); // 16x16 $icon->getSvg(20); // 20x20 $icon->getSvg(20, 25); // 20x25
Contributing
How to add a new icon library
- Create
icons/{library_name}
folder with a.gitkeep
file in it - Add configuration to
src/libs.php
- Create a fetcher in
src/Fetcher/{LibraryName}.php
. See other fetchers to see how it works. Usually, you have to download the SVG icons from somewhere and add them to the icons folders.
Use php run.php
to run all fetchers and update icons.