Package Data | |
---|---|
Maintainer Username: | ivuorinen |
Maintainer Contact: | hello@superhelio.com (SuperHelio) |
Package Create Date: | 2017-02-07 |
Package Last Update: | 2024-11-08 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:10:46 |
Package Statistics | |
---|---|
Total Downloads: | 16 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
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.0 or later. composer.lock
has been generated with PHP v7.0.23.
$ composer require superhelio/commands --dev
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');
}
}
php artisan superhelio:gozer
php artisan superhelio:reload
Please see CHANGELOG for more information what has changed recently.
$ composer test
If you discover any security related issues, please contact SuperHelio.
The MIT License (MIT). Please see License File for more information.