-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 884 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
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "csharpru/yii2-amqp",
"description": "The AMQP plugin based on pecl-amqp for Yii2",
"keywords": [
"yii2",
"amqp",
"pecl"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/CSharpRU/yii2-amqp/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/CSharpRU/yii2-amqp"
},
"authors": [
{
"name": "Yaroslav Lukyanov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"ext-amqp": "*",
"yiisoft/yii2": ">=2.0.4"
},
"require-dev": {
"phpunit/phpunit": "^5.4"
},
"autoload": {
"psr-4": {
"yii\\amqp\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}