| Package Data | |
|---|---|
| Maintainer Username: | nunomaduro | 
| Maintainer Contact: | enunomaduro@gmail.com (Nuno Maduro) | 
| Package Create Date: | 2017-12-10 | 
| Package Last Update: | 2025-02-19 | 
| Home Page: | |
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-11-02 15:14:10 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 1,846,700 | 
| Monthly Downloads: | 56,885 | 
| Daily Downloads: | 1,112 | 
| Total Stars: | 259 | 
| Total Watchers: | 6 | 
| Total Forks: | 20 | 
| 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.