forked from neondigital/openapi-spec-generator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
55 lines (55 loc) · 1.52 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
{
"name": "byteit/openapi-spec-generator",
"description": "Creates Open API spec for a Laravel JSON:API",
"authors": [
{
"name": "Glenn Jacobs",
"homepage": "https://github.com/glennjacobs",
"role": "Original author"
},
{
"name": "Johannes Kees",
"homepage": "https://github.com/byte-it",
"email": "johannes@lets-byte.it"
}
],
"license": "Apache-2.0",
"require": {
"php": ">=7.4|^8.0",
"laravel-json-api/hashids": "^1.0@beta",
"goldspecdigital/oooas": "^2.8",
"justinrainbow/json-schema": "^5.2",
"symfony/yaml": "^5.3"
},
"require-dev": {
"laravel-json-api/laravel": "^1.0",
"orchestra/testbench": "^6.9",
"phpunit/phpunit": "^9.5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"LaravelJsonApi\\OpenApiSpec\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaravelJsonApi\\OpenApiSpec\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"LaravelJsonApi\\OpenApiSpec\\OpenApiServiceProvider"
],
"aliases": {
"OpenApiGenerator": "LaravelJsonApi\\OpenApiSpec\\Facades\\GeneratorFacade"
}
}
},
"minimum-stability": "alpha"
}