-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.1 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
{
"name": "zrnik/zweist",
"description": "OpenAPI routing for Slim Framework 4 with `zircote/swagger-php`",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Štěpán Zrník",
"email": "stepan.zrnik@gmail.com"
}
],
"autoload": {
"psr-4": {
"Zrnik\\Zweist\\": "src",
"OpenApi\\Attributes\\": "openapi"
}
},
"autoload-dev": {
"psr-4": {
"Zrnik\\Zweist\\Tests\\": "tests"
}
},
"require": {
"php": ">=8.1.0",
"zircote/swagger-php": "^4",
"slim/slim": "^4",
"nyholm/psr7": "^1.8",
"eventsauce/object-hydrator": "^1.4",
"zrnik/php-attribute-reflection": "^0",
"nette/utils": "^3||^4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1",
"symplify/easy-coding-standard": "^12",
"phpunit/phpunit": "^10",
"php-di/php-di": "^7",
"zrnik/phpunit-exceptions": "^0.1",
"tracy/tracy": "^2"
}
}