ollywarren/makepackage
| Install | |
|---|---|
composer require ollywarren/makepackage |
|
| Latest Version: | V1.10 |
| License: | MIT |
| Last Updated: | Oct 7, 2017 |
| Links: | GitHub · Packagist |
MakePackage
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.phpproviders array:Ollywarren\Makepackage\MakepackageServiceProvider::class -
Navigate to the project root and run
php artisanto check that themake:packagecommand is present.
Usage Instructions
- Simply run
php artisan make:packagethen 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.
Related Packages
LazyArtisan automatically adds and manages your ServiceProviders and Facades in...
Laravel Package Service Provider for autoloading dependencies of packages in dev...
Enable a method for Artisan Commands to validate the output of methods like `ask...