-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.23 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
{
"name": "docit/core",
"description": "A documentation generator using markdown files. Able to sync with github manually or web-hook, edit markdown files and commit them. Lot of features",
"type": "laradic-extension",
"homepage": "https://github.com/laradic/docit",
"keywords": [
"documentation",
"generator",
"docs",
"markdown",
"github"
],
"license": "MIT",
"authors": [
{
"name": "Robin Radic",
"email": "robin@radic.nl",
"role": "Package Author/Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.0.*",
"laradic/support": "~1.2",
"laradic/config": "~1.3",
"laradic/extensions": "~0.1",
"laradic/themes": "~0.1",
"laradic/console": "~1.0",
"laradic/packadic": "~1.0",
"league/oauth2-client": "0.10.*",
"naneau/semver": "0.0.7.*",
"symfony/dom-crawler": "~2.6",
"graham-campbell/github": "~2.0",
"symfony/yaml": "~2.6"
},
"scripts": {
},
"autoload": {
"psr-4": {
"Docit\\Core\\": "src/"
}
}
}