hongyukeji / laravel-package
Laravel 5 package bootstraper
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/hongyukeji/laravel-package
Requires
- php: >=7.0
 - composer/composer: ^1.5.1
 - consoletvs/support: ^2.2.0
 - illuminate/support: 5.*
 
This package is auto-updated.
Last update: 2025-10-25 17:22:58 UTC
README
Bootpack - Laravel 5 package bootstraper
Description
Bootpack is a laravel 5 package bootstraper that does the following:
- Creates composer.json for a laravel package
 - Create a basic well structured package directory
 - Adds the local autoloader to the project composer.json
 - Dumps the autoload
 - Adds the package service provider to the laravel project
 - Initiates a git repository
 - Perhaps more ;D
 
It features a full terminal application based on an artisan command.
Installation
composer require hongyukeji/laravel-package
Register the service provider to the current project (Not needed if using laravel 5.5+):
Hongyukeji\LaravelPackage\BootpackServiceProvider::class
Publish the configuration:
php artisan vendor:publish
Usage
Can't be more simple... rename test/package to the vendor/packagename notation you wish to create.
Example: hongyukeji/laravel-package
php artisan bootpack:create test/package
You then have a cool functional terminal to help you create the package. Enjoy!