-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 753 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 753 Bytes
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
{
"name": "sekjun9878/request-parser",
"version": "v1.0.1",
"description": "A library to parse raw HTTP requests for PHP CLI web servers and more.",
"keywords": ["http", "request", "parse"],
"homepage": "https://github.com/sekjun9878/request-parser",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Yoo",
"email": "michael@yoo.id.au",
"homepage": "https://www.michael.yoo.id.au/",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "4.4.*",
"kherge/box": "~2.5"
},
"autoload": {
"psr-4": { "sekjun9878\\RequestParser\\": "src/" }
}
}