The Laravel Skeleton package provides a customizable starting point for developers creating packages for Laravel.
You can install the package using composer
$ composer require AvatarPHP/skeleton
Then add the service provider to config/app.php
. In Laravel versions 5.5 and beyond, this step can be skipped if package auto-discovery is enabled.
'providers' => [
...
AvatarPHP\Skeleton\ServiceProvider::class,
...
];
You can publish the configuration file and assets by running:
$ php artisan vendor:publish --provider=" AvatarPHP\Skeleton\ServiceProvider::class,"
Now that we have published a few new files to our application we need to reload them with the following command:
$ composer dump-autoload
Please see the changelog for more information on what has changed recently.
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email author email instead of using the issue tracker.
- With 💜 Sarfaraz Muhammad Sajib
license. Please see the license file for more information.