├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Shell │ └── Task │ │ └── QueueWorkerTask.php └── SimpleQueue.php ├── tests ├── TestCase │ ├── Shell │ │ └── Task │ │ │ └── QueueWorkerTaskTest.php │ └── SimpleQueueTest.php ├── bootstrap.php └── fixtures │ ├── SimpleQueueTest_testDeleteMessage │ ├── SimpleQueueTest_testGetAttributes │ ├── SimpleQueueTest_testReceiveMessage │ ├── SimpleQueueTest_testSend │ ├── SimpleQueueTest_testSendBatch │ ├── SimpleQueueTest_testSendBatchEmpty │ └── SimpleQueueTest_testSendInvalidCredentials └── todo.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /tmp 2 | /vendor 3 | /.idea 4 | composer.lock 5 | .php_cs* 6 | /coverage 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Shell/Task/QueueWorkerTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/src/Shell/Task/QueueWorkerTask.php -------------------------------------------------------------------------------- /src/SimpleQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/src/SimpleQueue.php -------------------------------------------------------------------------------- /tests/TestCase/Shell/Task/QueueWorkerTaskTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/TestCase/Shell/Task/QueueWorkerTaskTest.php -------------------------------------------------------------------------------- /tests/TestCase/SimpleQueueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/TestCase/SimpleQueueTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/SimpleQueueTest_testDeleteMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/fixtures/SimpleQueueTest_testDeleteMessage -------------------------------------------------------------------------------- /tests/fixtures/SimpleQueueTest_testGetAttributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/fixtures/SimpleQueueTest_testGetAttributes -------------------------------------------------------------------------------- /tests/fixtures/SimpleQueueTest_testReceiveMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/fixtures/SimpleQueueTest_testReceiveMessage -------------------------------------------------------------------------------- /tests/fixtures/SimpleQueueTest_testSend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/fixtures/SimpleQueueTest_testSend -------------------------------------------------------------------------------- /tests/fixtures/SimpleQueueTest_testSendBatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/fixtures/SimpleQueueTest_testSendBatch -------------------------------------------------------------------------------- /tests/fixtures/SimpleQueueTest_testSendBatchEmpty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/fixtures/SimpleQueueTest_testSendBatchEmpty -------------------------------------------------------------------------------- /tests/fixtures/SimpleQueueTest_testSendInvalidCredentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorenzo/cakephp-sqs/HEAD/tests/fixtures/SimpleQueueTest_testSendInvalidCredentials -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | * fix travis 2 | 3 | --------------------------------------------------------------------------------