-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 1.11 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
{
"name": "appserver-io/routlt",
"description": "Servlet based micro router and controller implementation.",
"homepage": "https://github.com/appserver-io/routlt",
"license": "OSL-3.0",
"authors": [
{
"name": "Tim Wagner",
"email": "[email protected]",
"homepage": "http://www.techdivision.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"appserver-io/http": "~2.0",
"appserver-io/lang": "~3.0",
"appserver-io/properties": "~2.0",
"appserver-io/description": "~13.0",
"appserver-io-psr/di": "~3.0",
"appserver-io-psr/epb": "~7.0",
"appserver-io-psr/mop": "~2.0",
"appserver-io-psr/naming": "~1.0",
"appserver-io-psr/servlet": "~4.0",
"appserver-io-psr/context": "~1.0",
"appserver-io-psr/deployment": "~2.0"
},
"require-dev": {
"appserver-io/build": "~1.0"
},
"autoload": {
"psr-0": {
"AppserverIo\\Routlt": [
"src/",
"tests/"
]
}
}
}