-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.24 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
{
"name": "polus/polus-adr",
"description": "base for my version of adr",
"homepage": "https://github.com/polusphp/polus-adr",
"license": "MIT",
"authors": [
{
"name": "Andreas Sundqvist",
"email": "andreas@forme.se"
}
],
"require": {
"php": ">=7.2.0",
"relay/middleware": "~1.0",
"filp/whoops": "^2.1",
"aura/di": "^3.0 || ^4.0",
"zendframework/zend-diactoros": "~1.0",
"aura/payload": "~3.0",
"polus/polus-interface": "^1.0",
"polus/polus-router": "^1.0",
"polus/polus-middleware": "^2.1",
"polus/config": "^1.0",
"middlewares/payload": "^1.0",
"middlewares/whoops": "^1.0",
"ellipse/dispatcher": "^1.2",
"http-interop/http-factory": "^0.3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-4": {
"Polus\\Adr\\": "src/",
"Polus\\Adr\\_Config\\": "config/"
}
},
"autoload-dev": {
"psr-4": {
"Fixtures\\": "tests/Fixtures",
"Polus\\Adr\\": "tests/Polus/Adr/",
"Test\\_Config\\": "tests/config/"
}
}
}