Download the PHP package se468/laravel-package-generators-extended without Composer
On this page you can find all versions of the php package se468/laravel-package-generators-extended. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download se468/laravel-package-generators-extended
More information about se468/laravel-package-generators-extended
Files in se468/laravel-package-generators-extended
Package laravel-package-generators-extended
Short Description Create migrations, models, controllers for custom packages using artisan commands.
License MIT
Homepage https://github.com/se468/laravel-package-generators-extended
Informations about the package laravel-package-generators-extended
Laravel Package Generators Extended
Adds Artisan command generators for the package for Commands, Migrations, Controllers, Models for rapid package development.
This package comes with useful generators:
Install
Via Composer
Optional Configuration
If you do not want to type vendor/package/namespace over and over for your generators, we offer a config file method.
Publish the config file.
It will generate package-generators.php
in the app/config
directory. You can modify vendor
, package
, namespace
to set the default package. You may now call the commands without specifying vendor/package/namespaces, and just specify the name of the file you want to create.
Usage
Package
Will create a service provider and composer.json
in your package src directory.
It will also add the psr4 namespaces in your laravel's composer.json
file and register the service provider in config/app.php
automatically.
It's that simple!
Command
Example:
or using config file
Controller
Example:
or using config file
Migration
Example:
or using config file
Model
Example:
or using config file
License
The MIT License (MIT). Please see License File for more information.