-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
41 lines (41 loc) · 1.03 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
{
"name": "m165437/laravel-blueprint-docs",
"description": "API Blueprint Renderer for Laravel",
"keywords": [
"api",
"blueprint",
"renderer",
"laravel",
"docs"
],
"license": "MIT",
"homepage": "https://github.com/M165437/laravel-blueprint-docs",
"authors": [
{
"name": "Michael Schmidt-Voigt",
"email": "[email protected]",
"homepage": "https://github.com/M165437",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"laravel/framework": ">=5.4|~7.0",
"hmaus/drafter-php": "^6.1.1",
"hmaus/reynaldo": "^0.1.5",
"erusev/parsedown": "^1.7.0",
"erusev/parsedown-extra": "^0.7.1"
},
"autoload": {
"psr-4": {
"M165437\\BlueprintDocs\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"M165437\\BlueprintDocs\\BlueprintDocsServiceProvider"
]
}
}
}