-
Notifications
You must be signed in to change notification settings - Fork 609
/
Copy pathcomposer.json
39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "mpociot/laravel-apidoc-generator",
"license": "MIT",
"description": "Generate beautiful API documentation from your Laravel / Lumen application",
"keywords": [
"API",
"Documentation",
"Laravel"
],
"homepage": "http://github.com/mpociot/laravel-apidoc-generator",
"authors": [
{
"name": "Marcel Pociot",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"fzaninotto/faker": "^1.6",
"laravel/framework": "~5.0",
"mpociot/documentarian": "^0.2.0",
"phpdocumentor/reflection-docblock": "^2.0"
},
"require-dev": {
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "~4.0 || ~5.0",
"dingo/api": "1.0.*@dev"
},
"autoload": {
"psr-0": {
"Mpociot\\ApiDoc": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mpociot\\ApiDoc\\Tests\\": "tests/"
}
}
}