-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.23 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
{
"name": "marekskopal/router",
"type": "library",
"description": "Attributes extension for league/route router",
"keywords": [
"league",
"route",
"router",
"attributes"
],
"license": "MIT",
"authors": [
{
"name": "Marek Skopal",
"homepage": "https://www.marekskopal.cz"
}
],
"require": {
"php": ">=8.1",
"league/route": "^6.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"nette/utils": "^4.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpunit/phpunit": "^10.2",
"spatie/ray": "^1.39",
"slevomat/coding-standard": "^8.14",
"phpstan/phpstan-strict-rules": "^2.0"
},
"autoload": {
"psr-4": {
"MarekSkopal\\Router\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarekSkopal\\Router\\Tests\\": [
"tests/"
]
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}