https://github.com/hongyukeji/laravel-package
https://github.com/hongyukeji/laravel-package
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hongyukeji/laravel-package
- Owner: hongyukeji
- License: mit
- Created: 2019-05-24T04:00:28.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-25T02:08:44.000Z (about 6 years ago)
- Last Synced: 2025-01-03T16:35:02.655Z (5 months ago)
- Language: PHP
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
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 ;DIt 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!


## Package Structure
