forked from mpociot/laravel-apidoc-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.55 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
{
"name": "mpociot/laravel-apidoc-generator",
"license": "MIT",
"description": "Generate beautiful API documentation from your Laravel application",
"keywords": [
"API",
"Documentation",
"Laravel"
],
"homepage": "http://github.com/mpociot/laravel-apidoc-generator",
"authors": [
{
"name": "Marcel Pociot",
"email": "m.pociot@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"fzaninotto/faker": "~1.8",
"illuminate/routing": "5.5.* || 5.6.* || 5.7.*",
"illuminate/support": "5.5.* || 5.6.* || 5.7.*",
"illuminate/console": "5.5.* || 5.6.* || 5.7.*",
"mpociot/documentarian": "^0.2.0",
"mpociot/reflection-docblock": "^1.0.1",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"orchestra/testbench": "3.5.* || 3.6.* || 3.7.*",
"phpunit/phpunit": "^6.0.0 || ^7.4.0",
"dingo/api": "2.0.0-alpha1",
"mockery/mockery": "^1.2.0",
"league/fractal": "^0.17.0"
},
"suggest": {
"league/fractal": "Required for transformers support"
},
"autoload": {
"psr-4": {
"Mpociot\\ApiDoc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mpociot\\ApiDoc\\Tests\\": "tests/"
}
},
"scripts": {
"test-ci": "phpunit --coverage-clover=coverage.xml"
},
"extra": {
"laravel": {
"providers": [
"Mpociot\\ApiDoc\\ApiDocGeneratorServiceProvider"
]
}
}
}