justinbyrne / extra-artisan-commands
Useful artisan commands for Laravel to help perform regular tasks.
Fund package maintenance!
JustinByrne
Installs: 3 700
Dependents: 0
Suggesters: 0
Security: 0
Stars: 28
Watchers: 2
Forks: 2
Open Issues: 2
Requires
- php: ^8.1
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.11
- nunomaduro/collision: ^6.1
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.6
- spatie/laravel-ray: ^1.26
README
Useful artisan commands for Laravel to help perform regular tasks.
Installation
You can install the package via composer:
composer require justinbyrne/extra-artisan-commands
You can publish the config file with:
php artisan vendor:publish --tag="extra-artisan-commands-config"
This is the contents of the published config file:
return [ /* |-------------------------------------------------------------------------- | Create new user fields |-------------------------------------------------------------------------- | | The fields that are needed to create a new user, add or remove as | required. | */ "user_fields" => [ "name" => "string", "email" => "email", "password" => "password", ], ];
Usage
The package adds artisan commands all of which cab be ran with php artisan
then any of the commands in the list below.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.