-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
690cd90
commit a35c091
Showing
2 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
# laravel-appleseed | ||
Prevent the pesky Apple Touch Icon error log entries, and provide a default set of icons. | ||
|
||
# Laravel Appleseed | ||
## Reasoning | ||
Eliminate error and server log entries that get thrown by missing favicons, especially the apple-touch-icon.png errors. | ||
|
||
### Dependencies | ||
- Your project should be running Laravel 4+. | ||
|
||
## Installation | ||
1. Install Laravel Appleseed via composer: | ||
```sh | ||
composer require genealabs/laravel-appleseed | ||
``` | ||
|
||
2. Add the service provider entry in `config\app.php`: | ||
```php | ||
GeneaLabs\LaravelAppleseed\LaravelAppleseedServiceProvider::class, | ||
``` | ||
|
||
## Usage | ||
That was it! It will inspect each route for favicon requests and handle it appropriately. | ||
|
||
## Credits | ||
Jesse Leite (@jesselite85) provided lots of ideas and input on making this happen. Thanks! |