├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── Command ├── Helper │ └── LoggerHelper.php └── LongRunningCommand.php ├── DependencyInjection ├── Configuration.php └── WowoQueueExtension.php ├── Exception └── ConfigurationException.php ├── Implementation ├── BeanstalkdQueueImplementation.php ├── SQSQueue │ └── Message.php └── SQSQueueImplementation.php ├── QueueImplementationInterface.php ├── QueueManager.php ├── README.markdown ├── Resources └── config │ └── services.xml ├── Tests ├── BeanstalkdQueueImplementationTest.php ├── QueueManagerTest.php └── SQSQueueImplementationTest.php ├── WowoQueueBundle.php ├── composer.json ├── composer.lock └── phpunit.xml.dist /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Command/Helper/LoggerHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Command/Helper/LoggerHelper.php -------------------------------------------------------------------------------- /Command/LongRunningCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Command/LongRunningCommand.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/WowoQueueExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/DependencyInjection/WowoQueueExtension.php -------------------------------------------------------------------------------- /Exception/ConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Exception/ConfigurationException.php -------------------------------------------------------------------------------- /Implementation/BeanstalkdQueueImplementation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Implementation/BeanstalkdQueueImplementation.php -------------------------------------------------------------------------------- /Implementation/SQSQueue/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Implementation/SQSQueue/Message.php -------------------------------------------------------------------------------- /Implementation/SQSQueueImplementation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Implementation/SQSQueueImplementation.php -------------------------------------------------------------------------------- /QueueImplementationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/QueueImplementationInterface.php -------------------------------------------------------------------------------- /QueueManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/QueueManager.php -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/README.markdown -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Tests/BeanstalkdQueueImplementationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Tests/BeanstalkdQueueImplementationTest.php -------------------------------------------------------------------------------- /Tests/QueueManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Tests/QueueManagerTest.php -------------------------------------------------------------------------------- /Tests/SQSQueueImplementationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/Tests/SQSQueueImplementationTest.php -------------------------------------------------------------------------------- /WowoQueueBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/WowoQueueBundle.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wowo/WowoQueueBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------