Download the PHP package laravelha/generator without Composer
On this page you can find all versions of the php package laravelha/generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package generator
Laravelha Generator
Laravel RAD Package based on Laravel-5-Generators-Extended
Install
After install fresh Laravel application:
- Install preset
composer require laravelha/preset-api --dev
orcomposer require laravelha/preset-web --dev
- Run preset
php artisan preset ha-api
orphp artisan preset ha-web --option=auth
- Via
composer require laravelha/generator --dev
- Run
php artisan ha-generator:<COMMAND> <ARGUMENTS> <OPTIONS>
to create automatically generated code. -
The following commands are available.:
- For more information for each command use:
php artisan help ha-generator:<COMMAND>
Happy way
This is my approach to use it.
-
Install laravel fresh application
-
Make the first commit
-
Install Laravelha/Preset for your case
-
Run preset
-
Make the commit
-
Install generator and publish config
-
Run crud generator
-
Commit then
-
Run other crud generator
- Commit last crud
It is very important that the stage is clean before running the generator, because if you give up what was generated it is possible to undo completely with
git clean -fd; git checkout .
Every command generated is store on /storage/logs, if you need detailer each command within crud, use the option
--log-details
Auto generated structure
Examples
API api generated from generator
WEB web application generated from generator
Screenshots
All versions of generator with dependencies
illuminate/console Version ^8.0
illuminate/filesystem Version ^8.0
illuminate/support Version ^8.0
laravelha/support Version ^1.0
orangehill/iseed Version ^2.6
ext-dom Version *