-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
37 lines (37 loc) · 922 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
{
"name": "iron-io/iron_mq",
"type": "library",
"description": "Client binding for IronMQ (hosted message queue)",
"keywords": ["mq","iron_mq","iron"],
"homepage": "http://github.com/iron-io/iron_mq_php",
"license": "MIT",
"authors": [
{
"name": "Alexander S",
"email": "[email protected]",
"homepage": "http://iron.io",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.0",
"iron-io/iron_core": "1.*"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"squizlabs/php_codesniffer": "~2.3",
"phpmd/phpmd": "~2.2",
"mikey179/vfsstream": "~1.5"
},
"autoload": {
"psr-4": {
"IronMQ\\": "src/"
}
},
"repositories":[
{
"type":"git",
"url":"http://github.com/iron-io/iron_mq_php"
}
]
}