-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1001 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
{
"name": "kekos/multipart-form-data-parser",
"description": "PHP parser for HTTP multipart/form-data bodies",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christoffer Lindahl",
"email": "[email protected]"
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"nyholm/psr7": "^1.2",
"rector/rector": "^0.18"
},
"autoload": {
"psr-4": {
"Kekos\\MultipartFormDataParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kekos\\MultipartFormDataParser\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse src tests -l 7"
}
}