-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcomposer.json
48 lines (48 loc) · 1.48 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
{
"name": "ovac/idoc",
"license": "MIT",
"description": "Generate beautiful API documentation from your Laravel application",
"keywords": [
"API",
"Documentation",
"Laravel"
],
"homepage": "http://github.com/ovac/idoc",
"authors": [
{
"name": "Victor Ariama (ovac4u)",
"email": "iamovac@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"fakerphp/faker": "^1.12",
"illuminate/routing": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/console": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"mpociot/reflection-docblock": "^1.0.1",
"ramsey/uuid": "^3.8 || ^4.0"
},
"require-dev": {
"orchestra/testbench": "3.5.* || 3.6.* || 3.7.* || 5.1.* || ^6.0 || ^9.0",
"phpunit/phpunit": "^6.0.0 || ^7.4.0 || ^9.0 || ^10.5",
"dingo/api": "2.0.0-alpha1",
"mockery/mockery": "^1.2.0",
"league/fractal": "^0.17.0 || ^0.20"
},
"autoload": {
"files": [
"helpers/helpers.php"
],
"psr-4": {
"OVAC\\IDoc\\": "src/idoc"
}
},
"extra": {
"laravel": {
"providers": [
"OVAC\\IDoc\\IDocServiceProvider"
]
}
}
}