Package Data | |
---|---|
Maintainer Username: | nunomaduro |
Maintainer Contact: | enunomaduro@gmail.com (Nuno Maduro) |
Package Create Date: | 2017-12-10 |
Package Last Update: | 2024-04-11 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-14 15:17:41 |
Package Statistics | |
---|---|
Total Downloads: | 1,321,026 |
Monthly Downloads: | 22,287 |
Daily Downloads: | 536 |
Total Stars: | 255 |
Total Watchers: | 8 |
Total Forks: | 21 |
Total Open Issues: | 3 |
Laravel Console Task was created by, and is maintained by Nuno Maduro, and is output method for Laravel Console Commands.
Requires PHP 7.0+
Require Laravel Console Task using Composer:
composer require nunomaduro/laravel-console-task
class LaravelInstallCommand extends Command
{
/**
* Execute the console command.
*
* @return void
*/
public function handle()
{
$this->task('Installing Laravel', function () {
return true;
});
$this->task('Doing something else', function () {
return false;
});
}
}
Thank you for considering to contribute to Laravel Console Task. All the contribution guidelines are mentioned here.
You can have a look at the CHANGELOG for constant updates & detailed information about the changes. You can also follow the twitter account for latest announcements or just come say hi!: @enunomaduro
Laravel Console Task is an open-sourced software licensed under the MIT license.