A simple Laravel package to store every artisan command history with arguments and options in database.
- php: >= 8.0
- laravel/framework: >= 9.x
composer require haroon-mahmood-4276/laravel-commands-history
Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
If laravel's auto-discovery doesn't work, add following lines in providers
array in config/app.php
/*
* Package Service Providers...
*/
...
HaroonMahmood4276\LaravelCommandsHistory\CommandHistoryServiceProvider::class,
HaroonMahmood4276\LaravelCommandsHistory\CommandEventServiceProvider::class,
...
php artisan migrate
- Fork this repo.
- Contribute in it.
- Open a pull request.
If you discover a security vulnerability within package, please send an e-mail to Haroon Mahmood via [email protected]. All security vulnerabilities will be promptly addressed.
This package is open-sourced software licensed under the MIT license.