-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.01 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
{
"name": "mako/open-api",
"description": "Generate routes based on OpenAPI specifications and OpenAPI specifications from code",
"keywords": ["mako", "framework", "open-api"],
"homepage": "http://makoframework.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Frederic G. Østby",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"mako\\openapi\\": "src"
}
},
"require": {
"php": ">=8.4.0",
"zircote/swagger-php": "^4.11",
"cebe/php-openapi": "^1.7"
},
"require-dev": {
"mako/framework": "^11.0.0",
"phpstan/phpstan": "^2.0.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"scripts": {
"phpstan": "phpstan analyze src --no-progress --memory-limit=-1 -c phpstan.neon",
"qa": [
"@phpstan"
]
}
}