-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 1.7 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
{
"name": "radebatz/openapi-router",
"description": "Routing adapter for OpenApi annotations.",
"license": [
"MIT"
],
"homepage": "http://radebatz.net/mano/",
"authors": [
{
"name": "Martin Rademacher",
"email": "[email protected]"
}
],
"prefer-stable": true,
"scripts": {
"cs": "php-cs-fixer fix --allow-risky=yes",
"rector": "rector process src tests",
"lint": [
"@cs --dry-run",
"@rector --dry-run"
],
"test": [
"phpunit",
"@lint"
]
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Radebatz\\OpenApi\\Routing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Radebatz\\OpenApi\\Routing\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"require": {
"php": ">=8.1",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"radebatz/openapi-extras": "^3.0",
"zircote/swagger-php": "^4.11.1 || ^5.0.2"
},
"require-dev": {
"doctrine/annotations": "^2.0",
"friendsofphp/php-cs-fixer": "^3.62.0",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"phpunit/phpunit": "^9.0 || ^10.5",
"rector/rector": "^1.2 || ^2.0",
"symfony/cache": "^6.0 || ^7.0",
"symfony/psr-http-message-bridge": "^6.0 || ^7.0"
},
"suggest": {
"radebatz/openapi-verifier": "Allows your PHPUnit tests to validate your controller response against your OpenAPI spec."
}
}