limen / laravel-jobs
A laravel package helps to organize jobs easily
v1.0.2
2018-05-10 02:55 UTC
Requires
- php: >=7.0.0
- laravel/framework: ~5.5
- limen/php-jobs: ~1.0
Requires (Dev)
- phpunit/phpunit: ~4.8
This package is not auto-updated.
Last update: 2024-11-06 09:09:46 UTC
README
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.