forked from middlewares/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.32 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
{
"name": "affinity4/middleware-factory",
"type": "library",
"description": "Use Psr17Factories to dispatch PSR-15 middleware packages. Default Psr17Factory is Nyholm\\Psr7\\Factory\\Psr17Factory",
"license": "MIT",
"keywords": [
"psr-7",
"psr-15",
"psr-11",
"psr-17",
"middleware",
"http"
],
"homepage": "https://github.com/affinity4/middleware-factory",
"support": {
"issues": "https://github.com/affinity4/middleware-factory/issues"
},
"require": {
"php": ">=7.2",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/container": "^1.0",
"psr/http-factory": "^1.0",
"nyholm/psr7": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"friendsofphp/php-cs-fixer": "^2.15",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"Affinity4\\MiddlewareFactory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Affinity4\\MiddlewareFactory\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit --coverage-text",
"phpcs"
],
"cs-fix": "php-cs-fixer fix .",
"coverage": "phpunit --coverage-html=coverage"
}
}