-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.13 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
{
"name": "jane-php/open-api-bundle",
"type": "library",
"description": "Jane OpenApi Symfony Bundle",
"keywords": ["bundle", "symfony"],
"homepage": "https://github.com/janephp/janephp",
"license": "MIT",
"authors": [
{
"name": "Baptiste Leduc",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"jane-php/open-api-common": "^7.5",
"nyholm/psr7": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0"
},
"conflict": {
"symfony/framework-bundle": "5.1.0"
},
"extra": {
"branch-alias": {
"dev-next": "7-dev"
}
},
"autoload": {
"psr-4": {
"Jane\\Bundle\\OpenApiBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"process-timeout": 1800,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}