ollywarren/makepackage
Implements a Artisan command to scaffold out laravel composer packages
2,685
6
| Install | |
|---|---|
composer require ollywarren/makepackage |
|
| Latest Version: | V1.10 |
| License: | MIT |
| Last Updated: | Oct 7, 2017 |
| Links: | GitHub · Packagist |
Maintainer: ollywarren
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.