This repository was archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.96 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "codex/core",
"description": "The core package for codex. This is the minimum required package to get codex up and running.",
"keywords": ["laravel", "documentation", "docs", "markdown", "codex"],
"homepage": "http://codex-project.ninja",
"authors": [{"name": "Robin Radic", "email": "robin@radic.nl"}],
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=5.5.9",
"laradic/support": "~1.0.1",
"laradic/service-provider": "~1.0",
"laradic/filesystem": "~1.0",
"laradic/annotation-scanner": "~1.0",
"illuminate/contracts": "~5.0",
"symfony/yaml": "~2.7|~3.0",
"vierbergenlars/php-semver": "3.0.*",
"nicmart/tree": "0.2.*",
"radic/blade-extensions": "~7.0",
"vlucas/phpdotenv": "^2.2",
"illuminate/view": "~5.0",
"illuminate/log": "~5.0",
"illuminate/cache": "~5.0",
"cebe/markdown": "~1.1",
"league/uri": "~4.1",
"fluentdom/fluentdom": "~5.3"
},
"suggest": {
"codex/addon-git": "Enables Github/Bitbucket integration and automatisation (~2.0)",
"codex/addon-auth": "Enables authorisation for projects (~2.0)",
"codex/addon-phpdoc": "Integrates PHPDoc into Codex (~2.0)"
},
"require-dev": {
"laradic/testing": "1.0.*",
"erusev/parsedown-extra": "~0.7",
"michelf/php-markdown": "~1.6",
"orchestra/testbench": "~3.3",
"laradic/icon-generator": "~1.0",
"phing/phing": "~2.9",
"phpdocumentor/phpdocumentor": "~2.9",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Codex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codex\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}