laravel-jobs maintained by limen
Jobs helps to organize jobs easily. For Laravel user.
This package is based on php-jobs
Installation
Recommend to install via composer.
composer require "limen/laravel-jobs"
Publish the service provider. The migrations and config file would be copied to your app directory. Check 'database/migrations' and 'config/jobs.php'.
php artisan vendor:publish --provider="Limen\Laravel\Jobs\JobsServiceProvider"
Run migrations.
php artisan jobs:install
Run tests. Come to the package directory and run
phpunit --bootstrap tests/bootstrap.php tests/
Usage
see
Do your own business and Have a happy trip.