-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
executable file
·41 lines (41 loc) · 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": "catrobat/capi",
"description": "",
"keywords": [
"openapi",
"php",
"sdk",
"api"
],
"homepage": "https://github.com/openapitools/openapi-generator",
"license": "unlicense",
"authors": [
{
"name": "openapi-generator contributors",
"homepage": "https://github.com/openapitools/openapi-generator"
}
],
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/validator": "^7.0",
"jms/serializer-bundle": "^5.4",
"symfony/framework-bundle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "*",
"phpstan/phpstan": "*",
"symfony/browser-kit": "^7.0",
"symfony/yaml": "^7.0",
"hoa/regex": "~1.0",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"OpenAPI\\Server\\" : "./"
}
}
}