Package Data | |
---|---|
Maintainer Username: | jorenvh |
Maintainer Contact: | vanhochtjoren@gmail.com (Joren Van Hocht) |
Package Create Date: | 2015-08-23 |
Package Last Update: | 2015-09-15 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:05:48 |
Package Statistics | |
---|---|
Total Downloads: | 23 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
#Create packages
This package is inspired by the workbench package that came default in Laravel 4. It speeds up your workflow for creating packages, once you have set your config settings the only thing left is running the artisan command and start developing your package.
##Installation
You can install this package through composer by running the following command
$ composer require jorenvanhocht\create-packages 1.0
Now add the service provider to the provider array in config/app.php
jorenvanhocht\CreatePackages\Providers\CreatePackagesServiceProvider::class,
##Configuration
Publish the config file by running the following command from your terminal
$ php artisan vendor:publish
Set your base folder and your vendor name, and you are good to go.
##Usage
To create a new package run
$ php artisan make:package yourPackageName
If want to create a package with a different vendor name then set in your config file you can add it as a parameter
$ php artisan make:package yourPackageName YourNewVendorName
#TODO Learn to write tests and write tests :)