-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
49 lines (49 loc) · 1.06 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
{
"name": "ronasit/laravel-swagger",
"description": "Provided middleware for generating of swagger-documentation file by run testing of restful API.",
"keywords": [
"laravel",
"swagger",
"auto-documentation",
"rest-api"
],
"license": "MIT",
"authors": [
{
"name": "Ronas IT",
"homepage": "https://github.com/RonasIT/laravel-swagger/graphs/contributors"
}
],
"require": {
"php": "^8.3",
"laravel/framework": "^11.34",
"phpunit/phpunit": "^11.4",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^9.3",
"php-coveralls/php-coveralls": "^2.7",
"php-mock/php-mock-phpunit": "^2.10"
},
"autoload": {
"psr-4": {
"RonasIT\\AutoDoc\\": "src/"
},
"exclude-from-classmap": [
"src/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"RonasIT\\AutoDoc\\Tests\\": "tests/",
"RonasIT\\AutoDoc\\Tests\\Support\\": "tests/support/"
}
},
"extra": {
"laravel": {
"providers": [
"RonasIT\\AutoDoc\\AutoDocServiceProvider"
]
}
}
}