ollywarren / makepackage
Implements a Artisan command to scaffold out laravel composer packages
Installs: 2 684
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 1
Open Issues: 0
This package is auto-updated.
Last update: 2024-11-19 05:57:21 UTC
README
Introduction
Implements a Artisan command to scaffold out Laravel Composer packages
Installation Laravel 5.5 LTS
-
Composer require the package:
composer require ollywarren/makepackage
Let Laravel 5.5 Automatic Package Discovery do its thang!
Installation Laravel 5.4
-
Composer require the package:
composer require ollywarren/makepackage
-
Register the service provider in
App\config\app.php
providers array:Ollywarren\Makepackage\MakepackageServiceProvider::class
-
Navigate to the project root and run
php artisan
to check that themake:package
command is present.
Usage Instructions
- Simply run
php artisan make:package
then follow the on screen instructions.
Enjoy and Make Something Awesome!
Mentions
Thanks to Sebastiaan Luca https://github.com/sebastiaanluca/php-stub-generator for sharing his Stub Generator code now included in this package. Made this package much smaller and much easier to maintain and upgrade in the future.