nunomaduro / laravel-console-task by nunomaduro

Laravel Console Task is a output method for your Laravel/Laravel Zero commands.
1,142,611
252
9
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-04-18 03:02:12
Package Statistics
Total Downloads: 1,142,611
Monthly Downloads: 25,443
Daily Downloads: 1,021
Total Stars: 252
Total Watchers: 9
Total Forks: 21
Total Open Issues: 4

About Laravel Console Task

Laravel Console Task was created by, and is maintained by Nuno Maduro, and is output method for Laravel Console Commands.

Installation

Requires PHP 7.0+

Require Laravel Console Task using Composer:

composer require nunomaduro/laravel-console-task

Usage

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;
        });
    }
}

Contributing

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

License

Laravel Console Task is an open-sourced software licensed under the MIT license.