├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── favicon.php ├── resources └── fonts │ └── OpenSans-Regular.ttf └── src ├── Favicon.php ├── FaviconServiceProvider.php ├── Generators ├── EnvironmentGenerator.php └── FaviconGenerator.php ├── Http └── Controllers │ └── FaviconController.php └── helpers.php /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/composer.json -------------------------------------------------------------------------------- /config/favicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/config/favicon.php -------------------------------------------------------------------------------- /resources/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/resources/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/Favicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/src/Favicon.php -------------------------------------------------------------------------------- /src/FaviconServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/src/FaviconServiceProvider.php -------------------------------------------------------------------------------- /src/Generators/EnvironmentGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/src/Generators/EnvironmentGenerator.php -------------------------------------------------------------------------------- /src/Generators/FaviconGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/src/Generators/FaviconGenerator.php -------------------------------------------------------------------------------- /src/Http/Controllers/FaviconController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/src/Http/Controllers/FaviconController.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondcode/laravel-favicon/HEAD/src/helpers.php --------------------------------------------------------------------------------