-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 749 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 749 Bytes
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
{
"name": "yaro/apidocs",
"description": "Api documentation generator for Laravel 5",
"keywords": ["laravel", "api", "docs", "documentation", "blueprint", "api blueprint"],
"require": {
"illuminate/support": "5.*|6.*|7.*"
},
"autoload": {
"psr-4": {
"Yaro\\ApiDocs\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Yaro\\ApiDocs\\ServiceProvider"
],
"aliases": {
"ApiDocs": "Yaro\\ApiDocs\\Facade"
}
}
},
"license": "MIT",
"authors": [
{
"name": "Yaro",
"email": "12fcv4@gmail.com"
}
],
"minimum-stability": "stable"
}