├── .github └── workflows │ └── php.yml ├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Facade.php └── JobChainer.php └── tests ├── JobChainerTest.php ├── Jobs ├── A.php ├── B.php └── C.php └── TestCase.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .phpunit.result.cache 3 | composer.lock 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/src/Facade.php -------------------------------------------------------------------------------- /src/JobChainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/src/JobChainer.php -------------------------------------------------------------------------------- /tests/JobChainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/tests/JobChainerTest.php -------------------------------------------------------------------------------- /tests/Jobs/A.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/tests/Jobs/A.php -------------------------------------------------------------------------------- /tests/Jobs/B.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/tests/Jobs/B.php -------------------------------------------------------------------------------- /tests/Jobs/C.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/tests/Jobs/C.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ephort/laravel-job-chainer/HEAD/tests/TestCase.php --------------------------------------------------------------------------------