-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 933 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
{
"name": "larium/controller",
"description": "Implementation of front controller design pattern",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Kollaros",
"email": "[email protected]"
}
],
"repositories": [
{
"url": "[email protected]:Larium/larium_routing.git",
"type": "git"
},
{
"url": "[email protected]:Larium/larium_executor.git",
"type": "git"
},
{
"url": "[email protected]:Larium/larium_http.git",
"type": "git"
}
],
"require": {
"php": ">=5.3",
"larium/routing": "*",
"larium/executor": "*"
},
"require-dev": {
"nikic/fast-route": "0.3.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Larium\\": "src/"
}
}
}