├── LICENSE ├── README.md ├── UPGRADE-2.0.md ├── composer.json ├── resources ├── attributes.php └── icons.php └── src ├── Exception ├── AliasDefinedException.php └── IconNotFoundException.php ├── Icon.php ├── IconManager.php └── SvgAttributesTrait.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/UPGRADE-2.0.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/composer.json -------------------------------------------------------------------------------- /resources/attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/resources/attributes.php -------------------------------------------------------------------------------- /resources/icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/resources/icons.php -------------------------------------------------------------------------------- /src/Exception/AliasDefinedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/src/Exception/AliasDefinedException.php -------------------------------------------------------------------------------- /src/Exception/IconNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/src/Exception/IconNotFoundException.php -------------------------------------------------------------------------------- /src/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/src/Icon.php -------------------------------------------------------------------------------- /src/IconManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/src/IconManager.php -------------------------------------------------------------------------------- /src/SvgAttributesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pixelrobin/php-feather/HEAD/src/SvgAttributesTrait.php --------------------------------------------------------------------------------