-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
50 lines (50 loc) · 1.39 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
44
45
46
47
48
49
50
{
"name": "equip/framework",
"description": "A tiny framework that can start anything.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Equip Contributors",
"homepage": "https://github.com/equip"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5",
"equip/adr": "^2.0",
"equip/config": "^1.0.2",
"equip/structure": "^1.0",
"filp/whoops": "^2.0",
"lukasoppermann/http-status": "^2",
"nikic/fast-route": "^1.0",
"psr/log": "^1.0",
"rdlowrey/auryn": "^1.1",
"relay/relay": "^1.1",
"relay/middleware": "^1.0",
"willdurand/negotiation": "^2.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"josegonzalez/dotenv": "^2.0",
"league/plates": "^3.1",
"monolog/monolog": "^1.19",
"phpunit/phpunit": "^4.8|^5.0",
"zendframework/zend-diactoros": "^1.0.4"
},
"suggest": {
"josegonzalez/dotenv": "For environment based configuration loading",
"league/plates": "For simple HTML templates written in PHP",
"monolog/monolog": "For a simple logging implementation of PSR-3"
},
"autoload": {
"psr-4": {
"Equip\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EquipTests\\": "tests/"
}
}
}