-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
30 lines (30 loc) · 845 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "mikemadisonweb/yii2-rabbitmq",
"description": "Wrapper based on php-amqplib to incorporate messaging in your Yii2 application via RabbitMQ. Inspired by RabbitMqBundle for Symfony 2, really awesome package.",
"type": "yii2-extension",
"keywords": ["yii2","extension","rabbitmq","amqp","message queue","distributed systems"],
"license": "MIT",
"authors": [
{
"name": "Mikhail Bakulin",
"email": "mikemadweb@gmail.com"
}
],
"require": {
"php": "^7.1||^8.0",
"yiisoft/yii2": "^2.0.43",
"php-amqplib/php-amqplib": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"php-coveralls/php-coveralls": "^2.5"
},
"autoload": {
"psr-4": {
"mikemadisonweb\\rabbitmq\\": ""
}
},
"extra": {
"bootstrap": "mikemadisonweb\\rabbitmq\\DependencyInjection"
}
}