├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── src └── Queue │ ├── JobInterface.php │ ├── Manager.php │ └── Queue.php └── tests ├── Jobs └── Demo.php ├── bootstrap.php ├── consumer.php └── producer.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/composer.json -------------------------------------------------------------------------------- /src/Queue/JobInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/src/Queue/JobInterface.php -------------------------------------------------------------------------------- /src/Queue/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/src/Queue/Manager.php -------------------------------------------------------------------------------- /src/Queue/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/src/Queue/Queue.php -------------------------------------------------------------------------------- /tests/Jobs/Demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/tests/Jobs/Demo.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/tests/consumer.php -------------------------------------------------------------------------------- /tests/producer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flc1125/php-queue/HEAD/tests/producer.php --------------------------------------------------------------------------------