-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1002 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
{
"name": "bear/middleware",
"description": "PSR-7 BEAR.Sunday middleware",
"keywords": [
"PSR7",
"Relay",
"BEAR.Sunday"
],
"license": "MIT",
"require": {
"php": ">=7.2.0",
"psr/http-message": "~1.0",
"relay/relay": "^1.1",
"relay/middleware": "~1.0",
"zendframework/zend-diactoros": "~1.0",
"bear/sunday": "^1.4",
"doctrine/annotations": "^1.7",
"bear/app-meta": "~1.0",
"bear/package": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.0"
},
"autoload": {
"psr-4": {
"BEAR\\Middleware\\": "src/"
},
"exclude-from-classmap": ["/tests/"]
},
"autoload-dev": {
"psr-4": {
"BEAR\\Middleware\\": [
"tests/",
"tests/Fake"
]
}
}
}