-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
64 lines (64 loc) · 1.77 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
{
"name": "jasny/switch-route",
"description": "",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Arnold Daniels",
"email": "[email protected]",
"homepage": "http://www.jasny.net"
}
],
"support": {
"issues": "https://github.com/jasny/switch-route/issues",
"source": "https://github.com/jasny/switch-route"
},
"require": {
"php": "^8.1",
"jasny/reflection-factory": "^1.1.1",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1",
"psr/http-server-middleware": "^1.0",
"spatie/regex": "^1.4"
},
"require-dev": {
"ext-json": "*",
"mikey179/vfsstream": "^1.6.11",
"phpstan/phpstan": "~1.12.0",
"phpunit/phpunit": ">= 10.5, < 12",
"jasny/phpunit-extension": "^v0.5.0",
"nyholm/psr7": "^1.1",
"relay/relay": "^2.1",
"squizlabs/php_codesniffer": "^3.10"
},
"suggest": {
"ext-zend-opcache": "May prevent filesystem reads"
},
"autoload": {
"psr-4": {
"Jasny\\SwitchRoute\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jasny\\SwitchRoute\\Tests\\Utils\\": "tests/Utils/",
"Jasny\\SwitchRoute\\Tests\\": "tests/unit/",
"Jasny\\SwitchRoute\\FunctionalTests\\": "tests/functional/"
}
},
"scripts": {
"test": [
"phpstan analyse",
"XDEBUG_MODE=coverage phpunit --testdox --colors=always --coverage-text",
"phpcs -p src"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}