This is a collection of quick commands for your Laravel project. It includes commands for actions, enums, helper, traits, etc.
You can install the package via composer:
composer require denizozturk/quick-command
php artisan quick:make CollectionName --type=action
Note You can use
php artisan quick:make
command with--type=action
or--type=contract
or--type=enum
or--type=helper
or--type=trait
Warning If you created a global helper, you should update your
compose.json
file. As you can see in the example below:
{
"autoload": {
"files": [
"app/Helpers/helpers.php"
]
}
}
composer test
- Add support to more types
- Add support for useful patterns
- Add support arguments for commands
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.