-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.26 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
{
"name": "kekos/parse-request-body-middleware",
"description": "PSR-15 middleware for parsing requests with JSON and URI encoded bodies regardless of HTTP method.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christoffer Lindahl Hassel",
"email": "[email protected]"
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"kekos/multipart-form-data-parser": "^1.1",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"nyholm/psr7-server": "^1.0",
"nyholm/psr7": "^1.3",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"rector/rector": "^0.18"
},
"autoload": {
"psr-4": {
"Kekos\\ParseRequestBodyMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kekos\\ParseRequestBodyMiddleware\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse src tests -l 8",
"web-test": "php -S 127.0.0.1:8001 -t web-tests"
}
}