-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
42 lines (42 loc) · 906 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
41
42
{
"name": "alexbilbie/proton",
"type": "library",
"description": "Micro PHP framework",
"keywords": [
"framework",
"StackPHP",
"HttpKernelInterface",
"middleware",
"micro",
"proton"
],
"homepage": "https://github.com/alexbilbie/proton",
"license": "MIT",
"authors": [
{
"name": "Alex Bilbie",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"symfony/http-kernel": "2.5.*",
"orno/route": "1.*",
"orno/di": "2.*",
"league/event": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Proton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProtonTests\\": "tests/"
}
},
"minimum-stability": "dev"
}