-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 872 Bytes
/
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": "jeandormehl/openapi-gen",
"description": "Generates OpenApi specification for Laravel, Lumen or Dingo using a configuration array and cebe/php-openapi",
"keywords": [
"api",
"dingo",
"laravel",
"lumen",
"oas",
"openapi",
"swagger"
],
"type": "library",
"license": "Apache-2.0",
"require": {
"php": ">=7.1.3",
"cebe/php-openapi": "^1.2",
"illuminate/database": "~5.0|~6.0|~7.0",
"illuminate/support": "~5.0|~6.0|~7.0",
"illuminate/validation": "~5.0|~6.0|~7.0",
"symfony/yaml": "^4.3"
},
"autoload": {
"psr-4": {
"Rapid\\OAS\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "v1.0-dev"
},
"laravel": {
"providers": [
"Rapid\\OAS\\Providers\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}