generated from chillerlan/php-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "chillerlan/psr-15-handlers",
"description": "A set of PSR-15 middleware dispatchers and handlers.",
"license": "MIT",
"type": "library",
"keywords": ["psr-15", "dispatcher", "middleware", "handler"],
"authors": [
{
"name": "smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
},
{
"name": "Contributors",
"homepage":"https://github.com/chillerlan/psr-15-handlers/graphs/contributors"
}
],
"homepage": "https://github.com/chillerlan/psr-15-handlers",
"support": {
"docs": "https://chillerlan.github.io/psr-15-handlers",
"issues": "https://github.com/chillerlan/psr-15-handlers/issues",
"source": "https://github.com/chillerlan/psr-15-handlers"
},
"provide": {
"psr/http-server-handler-implementation": "1.0",
"psr/http-server-middleware-implementation": "1.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"chillerlan/php-http-message-utils": "^2.1",
"guzzlehttp/psr7": "^2.6",
"phan/phan": "^5.4",
"phpunit/phpunit": "^10.5",
"phpmd/phpmd": "^2.15",
"squizlabs/php_codesniffer": "^3.9"
},
"suggest": {
"chillerlan/php-httpinterface": "A PSR-18 HTTP client implementation",
"chillerlan/psr-7": "A PSR-7/PSR-17 HTTP message and factory implementation.",
"chillerlan/php-oauth": "A PSR-7 OAuth client/handler that also acts as PSR-18 HTTP client"
},
"autoload": {
"psr-4": {
"chillerlan\\HTTP\\Psr15\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\HTTPTest\\Psr15\\": "tests/"
}
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}