yappkahowe / artisan
Additional Laravel Artisan commands that I often needed.
Requires
- php: ^7.0
- laravel/framework: 5.4.* || 5.5.*
Requires (Dev)
- phpunit/phpunit: ~6.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-09-13 15:35:43 UTC
README
Additional Laravel Artisan commands that I often needed.
Downloading
Via composer:
$ composer require yappkahowe/artisan
Registering the service provider
If you're using Laravel 5.5, you can skip this step. The service provider will have already been registered thanks to auto-discovery.
Otherwise, register YappKaHowe\Artisan\ServiceProvider::class manually in your config/app.php
'providers' => [ // Other service providers... YappKaHowe\Artisan\ServiceProvider::class, ],
Usage
If you now run php artisan you will see two new commands in the list:
db:reseeddb:truncate
Contributing
All contributions (in the form on pull requests, issues and feature-requests) are welcome.
License
yappkahowe/artisan is licenced under the MIT License (MIT). Please see the
license file for more information.