-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (32 loc) · 909 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
39
40
41
42
{
"name": "kdubuc/query-string-parser",
"description": "PSR15 Query String Parser",
"keywords": ["psr15", "psr7", "query string", "parse_str"],
"homepage": "https://github.com/kdubuc/query-string-parser",
"license": "CECILL-2.1",
"authors": [
{
"role": "Developer",
"name": "Kevin DUBUC",
"email": "kevindubuc62@gmail.com",
"homepage": "http://kevindubuc.fr"
}
],
"require": {
"php": "^7.1 || ^8.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"guzzlehttp/psr7": "^1.5 || ^2.0"
},
"require-dev": {
"kdubuc/php-cs-fixer-rules": "^1.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Kdubuc\\Middleware\\": "src/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}