Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ConsoleTVs/Bootpack
Laravel 5 package bootstraper.
https://github.com/ConsoleTVs/Bootpack
Last synced: 13 days ago
JSON representation
Laravel 5 package bootstraper.
- Host: GitHub
- URL: https://github.com/ConsoleTVs/Bootpack
- Owner: ConsoleTVs
- License: mit
- Created: 2017-08-11T18:20:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-04T00:30:05.000Z (over 4 years ago)
- Last Synced: 2024-08-02T11:25:15.233Z (4 months ago)
- Language: PHP
- Size: 18.6 KB
- Stars: 281
- Watchers: 13
- Forks: 24
- Open Issues: 4
-
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 consoletvs/bootpack
```Register the service provider to the current project (Not needed if using laravel 5.5+):
```
ConsoleTVs\Bootpack\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: consoletvs/bootpack
```
php artisan bootpack:create test/package
```You then have a cool functional terminal to help you create the package. Enjoy!
![First](http://i.imgur.com/7XkKtQe.png)
![Second](http://i.imgur.com/hgBzQQw.png)
## Package Structure
![Structure](http://i.imgur.com/wOEynKN.png)