forked from amphp/http-server-form-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.55 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.55 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "amphp/http-server-form-parser",
"homepage": "https://github.com/amphp/http-server-form-parser",
"description": "A form parser for Amp's HTTP parser.",
"keywords": [
"http",
"form",
"async",
"non-blocking",
"amp",
"amphp"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Bob Weinand"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"require": {
"php": ">=7",
"amphp/amp": "^2",
"amphp/byte-stream": "^1.3",
"amphp/http": "^1",
"amphp/http-server": "^2 || ^1 || ^0.8"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1.2",
"phpunit/phpunit": "^8 || ^7 || ^6"
},
"autoload": {
"psr-4": {
"Amp\\Http\\Server\\FormParser\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Http\\Server\\FormParser\\Test\\": "test"
}
},
"config": {
"platform": {
"php": "7.0.13"
}
},
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
}
}