This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 2 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
{
"name": "riconijeboer/laravel-to-swagger",
"description": "This package aims to bring you the easiest way to create a Swagger / OpenApi 3 config for your Laravel API's.",
"keywords": [
"riconijeboer",
"laravel",
"laravel-to-swagger",
"swagger",
"openapi",
"laravel-to-openapi",
"api",
"documentation",
"laravel-documentation"
],
"homepage": "https://github.com/riconijeboer/laravel-to-swagger",
"license": "MIT",
"authors": [
{
"name": "Rico Nijeboer",
"email": "rico@riconijeboer.nl",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"ext-json": "*",
"cerbero/lazy-json": "^1.1",
"fakerphp/faker": "^1.14",
"illuminate/contracts": "^6|^7|^8|^9",
"illuminate/database": "^6|^7|^8|^9",
"soapbox/laravel-formatter": "2.x",
"spatie/laravel-package-tools": "^1.4.3"
},
"require-dev": {
"brianium/paratest": "^6.2",
"laravel/passport": "^10.1",
"nunomaduro/collision": "^5.3|^6.1",
"orchestra/testbench": "^6.15",
"phpunit/phpunit": "^9.3",
"spatie/laravel-ray": "^1.9",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"RicoNijeboer\\Swagger\\": "src",
"RicoNijeboer\\Swagger\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"RicoNijeboer\\Swagger\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/testbench package:test --parallel --no-coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"RicoNijeboer\\Swagger\\SwaggerServiceProvider",
"RicoNijeboer\\Swagger\\Providers\\ValidationServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}