novius / laravel-artisan-commands
Additional artisan commands for Laravel
Installs: 13 071
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 4
Forks: 4
Open Issues: 0
Requires
- php: ^7.3|^8.0
- laravel/framework: ~7.0|~8.0|~9.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16.1
- orchestra/testbench: ^5.18
- phpunit/phpunit: ^8.5
README
This package contains some useful Artisan commands.
Requirements
This version is compatible with Laravel 7.x|8.x|9.x and PHP >= 7.3.
For Laravel >= 6.0 and < 7.0 please use 2.* version.
For Laravel >= 5.7 and < 6.0 please use 1.* version.
For Laravel >=5.5.0 and < 5.7 please use 0.3 version.
Installation
In your terminal:
composer require novius/laravel-artisan-commands
Usage & Features
db:configure
This command replaces some variables into .env
and config/database.php
files,
in order to configure database name, user and password when you create a new project.
php artisan db:configure
db:create
This command tries to create a database, for a given connection:
php artisan db:create --connection=[connection]
[connection]
have to be a valid connection, defined into config/database.php
configuration file.
For instance, php artisan db:create --connection=mysql
will call config('database.connections.mysql')
to get driver, host, database name, etc.
Testing
Run the tests with:
./test.sh
Lint
Run php-cs with:
./cs.sh
Contributing
Contributions are welcome! Leave an issue on Github, or create a Pull Request.
Licence
This package is under GNU Affero General Public License v3 or (at your option) any later version.