-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.01 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "appserver-io-psr/cli",
"description": "PSR, for the appserver.io CLI",
"homepage": "https://github.com/appserver-io-psr/cli",
"license": "OSL-3.0",
"keywords": [
"php",
"interface",
"cli",
"console"
],
"authors": [
{
"name": "Tim Wagner",
"email": "tw@appserver.io",
"homepage": "http://www.appserver.io",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"appserver-io-psr/application": "~1.0",
"appserver-io-psr/application-server": "~2.0"
},
"require-dev": {
"appserver-io/build": "~1.0"
},
"autoload": {
"psr-0": {
"AppserverIo\\Psr\\Cli": [
"src/",
"tests/"
]
}
},
"support": {
"email": "tw@appserver.io",
"issues": "https://github.com/appserver-io-psr/cli/issues",
"source": "https://github.com/appserver-io-psr/cli"
}
}