-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (38 loc) · 955 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
{
"name": "digit-soft/laravel-swagger-generator",
"description": "Swagger yaml generator",
"keywords": ["api", "swagger", "open auth"],
"license": "MIT",
"version": "1.5.1",
"authors": [
{
"name": "Digit",
"email": "digit.vova@gmail.com"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^7.30.6||^8.75||^9.1.9||^10.0||^11.0",
"symfony/yaml": "^6.1",
"phpdocumentor/reflection-docblock": "^4.3|^5.0",
"doctrine/annotations": "^1.6"
},
"autoload": {
"psr-4": {
"DigitSoft\\Swagger\\": "src/",
"OA\\": "oa/"
}
},
"autoload-dev": {
"psr-4": {
"DigitSoft\\Swagger\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"DigitSoft\\Swagger\\SwaggerGeneratorServiceProvider"
]
}
}
}