-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 1.18 KB
/
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
43
{
"name": "appserver-io/messaging",
"description": "Messaging components implementing the PMS PSR",
"homepage": "https://github.com/appserver-io/messaging",
"license": "OSL-3.0",
"authors": [
{
"name": "Tim Wagner",
"email": "[email protected]",
"homepage": "https://github.com/wagnert",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"rhumsaa/uuid": "~2.4",
"guzzle/guzzle": "3.9.*",
"appserver-io/properties": "~2.0",
"appserver-io-psr/epb": "~7.0",
"appserver-io-psr/pms": "~2.0",
"appserver-io-psr/socket": "~1.0",
"appserver-io-psr/application": "~1.0"
},
"require-dev": {
"appserver-io/build": "~1.0"
},
"autoload": {
"psr-0": {
"AppserverIo\\Messaging": [
"src/",
"tests/"
]
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/appserver-io/messaging/issues",
"source": "https://github.com/appserver-io/messaging"
},
"keywords": [
"messaging pms components"
]
}