limen/laravel-jobs

A laravel package helps to organize jobs easily

Installs: 17

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 1

Open Issues: 0

pkg:composer/limen/laravel-jobs

v1.0.2 2018-05-10 02:55 UTC

This package is not auto-updated.

Last update: 2025-10-08 13:32:06 UTC


README

Build Status Packagist

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.