-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
59 lines (59 loc) · 1.46 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
{
"name": "jane-php/open-api-common",
"type": "library",
"description": "Utility for OpenApi 2/3 generators",
"keywords": [
"jane",
"swagger",
"openapi",
"utility"
],
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "[email protected]"
},
{
"name": "Baptiste Leduc",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jane\\Component\\OpenApiCommon\\": ""
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"jane-php/json-schema": "^7.5",
"jane-php/open-api-runtime": "^7.0",
"nyholm/psr7": "^1.8",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/string": "^5.4 || ^6.4 || ^7.0",
"symfony/var-dumper": "^5.4 || ^6.4 || ^7.0"
},
"extra": {
"branch-alias": {
"dev-next": "7-dev"
}
},
"suggest": {
"jane-php/open-api-2": "Allow to generate OpenApi v2 clients",
"jane-php/open-api-3": "Allow to generate OpenApi v3 clients"
},
"bin": [
"bin/jane-openapi"
],
"config": {
"process-timeout": 1800,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}