├── .github └── workflows │ └── ci.yaml ├── LICENSE ├── README.md ├── VERSION ├── composer.json ├── phpcs.xml.dist ├── resources ├── cache │ └── .gitkeep └── default.ico └── src └── Favicon ├── DataAccess.php ├── Favicon.php └── FaviconDLType.php /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v2.0.0 -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /resources/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/resources/default.ico -------------------------------------------------------------------------------- /src/Favicon/DataAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/src/Favicon/DataAccess.php -------------------------------------------------------------------------------- /src/Favicon/Favicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/src/Favicon/Favicon.php -------------------------------------------------------------------------------- /src/Favicon/FaviconDLType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurHoaro/favicon/HEAD/src/Favicon/FaviconDLType.php --------------------------------------------------------------------------------