-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.19 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
{
"name": "idiosyncratic/amproute",
"description": "A flexible HTTP Router for Amp's HTTP Server",
"keywords": [
"http",
"router",
"server",
"amp",
"amphp"
],
"type": "library",
"license": "ISC",
"authors": [
{
"name": "Jason Silkey",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Idiosyncratic\\AmpRoute\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Idiosyncratic\\AmpRoute\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"discard-changes": true
},
"require": {
"php": ">=8.0",
"amphp/amp": "^2.5",
"amphp/http": "^1.6",
"amphp/http-server": "^2.1",
"league/uri": "^6.4",
"nikic/fast-route": "^1.3",
"psr/container": "^2.0 || ~1.0",
"psr/log": "^1.1"
},
"require-dev": {
"bmitch/churn-php": "^1.5",
"doctrine/coding-standard": "^8.2",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12.81",
"phpunit/phpunit": "^9.5"
}
}