├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── Configuration.php ├── DependencyInjection.php ├── LICENSE ├── README.md ├── README_rus.md ├── README_v1.md ├── components ├── AbstractConnectionFactory.php ├── BaseRabbitMQ.php ├── Consumer.php ├── ConsumerInterface.php ├── Logger.php ├── Producer.php └── Routing.php ├── composer.json ├── controllers └── RabbitMQController.php ├── events ├── RabbitMQConsumerEvent.php └── RabbitMQPublisherEvent.php ├── exceptions ├── InvalidConfigException.php └── RuntimeException.php ├── helpers └── CreateUnitHelper.php ├── migrations └── M201026132305RabbitPublishError.php ├── models └── RabbitPublishError.php ├── phpunit.xml.dist └── tests ├── ConfigurationTest.php ├── DependencyInjectionTest.php ├── TestCase.php ├── bootstrap.php ├── components ├── AbstractConnectionFactoryTest.php ├── ConsumerTest.php ├── ProducerTest.php └── RoutingTest.php └── controllers └── RabbitMQControllerTest.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/.travis.yml -------------------------------------------------------------------------------- /Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/DependencyInjection.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/README.md -------------------------------------------------------------------------------- /README_rus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/README_rus.md -------------------------------------------------------------------------------- /README_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/README_v1.md -------------------------------------------------------------------------------- /components/AbstractConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/components/AbstractConnectionFactory.php -------------------------------------------------------------------------------- /components/BaseRabbitMQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/components/BaseRabbitMQ.php -------------------------------------------------------------------------------- /components/Consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/components/Consumer.php -------------------------------------------------------------------------------- /components/ConsumerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/components/ConsumerInterface.php -------------------------------------------------------------------------------- /components/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/components/Logger.php -------------------------------------------------------------------------------- /components/Producer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/components/Producer.php -------------------------------------------------------------------------------- /components/Routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/components/Routing.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/RabbitMQController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/controllers/RabbitMQController.php -------------------------------------------------------------------------------- /events/RabbitMQConsumerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/events/RabbitMQConsumerEvent.php -------------------------------------------------------------------------------- /events/RabbitMQPublisherEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/events/RabbitMQPublisherEvent.php -------------------------------------------------------------------------------- /exceptions/InvalidConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/exceptions/InvalidConfigException.php -------------------------------------------------------------------------------- /exceptions/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/exceptions/RuntimeException.php -------------------------------------------------------------------------------- /helpers/CreateUnitHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/helpers/CreateUnitHelper.php -------------------------------------------------------------------------------- /migrations/M201026132305RabbitPublishError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/migrations/M201026132305RabbitPublishError.php -------------------------------------------------------------------------------- /models/RabbitPublishError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/models/RabbitPublishError.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/ConfigurationTest.php -------------------------------------------------------------------------------- /tests/DependencyInjectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/DependencyInjectionTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/components/AbstractConnectionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/components/AbstractConnectionFactoryTest.php -------------------------------------------------------------------------------- /tests/components/ConsumerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/components/ConsumerTest.php -------------------------------------------------------------------------------- /tests/components/ProducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/components/ProducerTest.php -------------------------------------------------------------------------------- /tests/components/RoutingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/components/RoutingTest.php -------------------------------------------------------------------------------- /tests/controllers/RabbitMQControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemadisonweb/yii2-rabbitmq/HEAD/tests/controllers/RabbitMQControllerTest.php --------------------------------------------------------------------------------