mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 03:33:59 +00:00
b35379840ebd1a8a0a50fcde8240cf0d83ed0379
Bumps [laravel/framework](https://github.com/laravel/framework) from 8.40.0 to 8.83.27. - [Release notes](https://github.com/laravel/framework/releases) - [Changelog](https://github.com/laravel/framework/blob/9.x/CHANGELOG.md) - [Commits](https://github.com/laravel/framework/compare/v8.40.0...v8.83.27) --- updated-dependencies: - dependency-name: laravel/framework dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
Laravel Commands by SuperHelio
This is a collection of Laravel Artisan commands created to help everyone in their development work. We try to keep these as useful as possible.
This package requires PHP 7.3 or later. The composer.lock file has been generated with PHP v7.4.13.
Install
Step 1: Install Through Composer
$ composer require superhelio/commands --dev
Step 2: Add the Service Provider
You'll only want to use these generators for local development, so you don't want to update the production providers array in config/app.php. Instead, add the provider in app/Providers/AppServiceProvider.php, like so:
public function register()
{
if ($this->app->environment() === 'local') {
$this->app->register('SuperHelio\Commands\ServiceProvider');
}
}
Usage
- superhelio:gozer
- Force delete database tables that have your table prefix
php artisan superhelio:gozer
- superhelio:reload
- Reset database, migrate and seed
php artisan superhelio:reload
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Security
If you discover any security related issues, please contact SuperHelio.
Credits
License
The MIT License (MIT). Please see License File for more information.
Description
Languages
PHP
100%