jorenvh / create-packages by jorenvh

Laravel packages for quickly creating a new package base structure
20
4
3
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-05-04 15:12:59
Package Statistics
Total Downloads: 20
Monthly Downloads: 0
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 :)