-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 3.41 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 3.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "codex/core",
"description": "The core package for Codex. This is the minimal requirement to get Codex up and running.",
"keywords": [
"laravel",
"documentation",
"markdown",
"codex"
],
"license": "MIT",
"homepage": "https://codex.radic.ninja",
"authors": [
{
"name": "Robin Radic",
"email": "rradic@hotmail.com",
"homepage": "https://radic.ninja",
"role": "developer"
}
],
"support": {
"docs": "https://codex.radic.ninja",
"email": "rradic@hotmail.com",
"issues": "https://github.com/codex-project/codex/issues",
"source": "https://github.com/codex-project/codex/core",
"wiki": "https://codex.radic.ninja"
},
"suggest": {
"codex/auth": "Provides authentication using oauth providers (socialite) to restrict project access (~2.0)",
"codex/algolia-search": "Integrates algolia search into codex (~2.0)",
"codex/blog": "Provides blogging capability with categories containing posts (~2.0)",
"codex/comments": "Adds comments to your documents like Disqus or create your own adapter (~2.0)",
"codex/filesystems": "Adds a collection of common filesystem adapters. These can be used by your projects. (~2.0)",
"codex/git": "Enables Github/Bitbucket integration & synchronisation (auto-webhook or manual) based on tags/branches. (~2.0)",
"codex/packagist": "Integrates Packagist information links and macros in your projects (~2.0)",
"codex/phpdoc": "Integrates PHPDoc documentation, links and macros in your projects (~2.0)",
"codex/sitemap": "Generates a sitemap.xml (~2.0)"
},
"require": {
"php": ">=7.0.0",
"codex/composer-plugin": "~2.0",
"laradic/support": "~1.5",
"laradic/dependency-sorter": "~1.1",
"laradic/service-provider": "~1.0",
"symfony/yaml": "~2.7|~3.0|~4.0",
"symfony/expression-language": "~3.0|~4.0",
"nicmart/tree": "0.2.*",
"league/uri": "~4.0|~5.0",
"fluentdom/fluentdom": "~7.0",
"fluentdom/selectors-phpcss": "~1.2",
"radic/blade-extensions": "~7.1",
"myclabs/php-enum": "~1.5",
"league/commonmark": "^0.17",
"league/commonmark-extras": "~0.1",
"webuni/commonmark-table-extension": "~0.9",
"webuni/commonmark-attributes-extension": "~0.6",
"barryvdh/laravel-cors": "~0.9",
"graham-campbell/flysystem": "~5.0",
"symfony/config": "~4.0",
"nuwave/lighthouse": "~2.6",
"deinternetjongens/lighthouse-utils": "~0.2",
"colinodell/json5": "^2.0",
"marc-mabe/php-enum": "3.1.*",
"zendframework/zend-config": "3.2.*",
"zendframework/zend-config-aggregator": "1.1.*",
"zendframework/zend-config-aggregator-parameters": "1.1.*",
"webmozart/glob": "~4.1"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Codex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codex\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"laravel": {
"dont-discover": [
"codex/core",
"nuwave/lighthouse",
"deinternetjongens/lighthouse-utils"
]
}
}
}