forked from byte-it/openapi-spec-generator
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
83 lines (83 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "swisnl/openapi-spec-generator",
"type": "library",
"description": "Creates Open API spec for a Laravel JSON:API",
"keywords": [
"swisnl",
"openapi-spec-generator",
"openapi",
"openapi-spec",
"generator",
"laravel",
"json-api"
],
"homepage": "https://github.com/swisnl/openapi-spec-generator",
"license": "Apache-2.0",
"authors": [
{
"name": "Glenn Jacobs",
"homepage": "https://github.com/glennjacobs",
"role": "Original author"
},
{
"name": "Johannes Kees",
"homepage": "https://github.com/byte-it",
"email": "[email protected]"
},
{
"name": "Björn Brala",
"email": "[email protected]",
"homepage": "https://github.com/bbrala"
},
{
"name": "Rien van Velzen",
"email": "[email protected]",
"homepage": "https://github.com/Rockheep",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"goldspecdigital/oooas": "^2.8",
"justinrainbow/json-schema": "^5.2",
"laravel-json-api/hashids": "^1.1|^2.0|^3.0",
"symfony/yaml": "^5.3|^6.0|^7.0"
},
"require-dev": {
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.14",
"laravel-json-api/laravel": "^2.0|^3.0|^4.0",
"nesbot/carbon": "^2.63|^3.0",
"orchestra/testbench": "^6.25|^7.21|^8.0|^9.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"LaravelJsonApi\\OpenApiSpec\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaravelJsonApi\\OpenApiSpec\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"check-style": "php-cs-fixer fix --dry-run -v",
"fix-style": "php-cs-fixer fix"
},
"extra": {
"laravel": {
"providers": [
"LaravelJsonApi\\OpenApiSpec\\OpenApiServiceProvider"
],
"aliases": {
"OpenApiGenerator": "LaravelJsonApi\\OpenApiSpec\\Facades\\GeneratorFacade"
}
}
},
"config": {
"sort-packages": true
}
}