-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
79 lines (79 loc) · 2.58 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
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
{
"name": "codex/phpdoc",
"type": "codex-addon",
"description": "Codex Addon - Integrates PHPDoc documentation, links and macros in your projects",
"keywords": [
"laravel",
"documentation",
"markdown",
"codex",
"phpdoc",
"api",
"information",
"links",
"macros",
"api documentation",
"apidoc",
"api-doc"
],
"license": "MIT",
"homepage": "https://codex.radic.ninja",
"authors": [
{
"name": "Robin Radic",
"email": "[email protected]",
"homepage": "https://radic.ninja",
"role": "developer"
}
],
"support": {
"docs": "https://codex.radic.ninja",
"email": "[email protected]",
"issues": "https://github.com/codex-project/codex/issues",
"source": "https://github.com/codex-project/codex/phpdoc",
"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/sitemap": "Generates a sitemap.xml (~2.0)"
},
"require": {
"codex/core": "~2.0",
"jms/serializer": "~1.9",
"phpdocumentor/reflection-docblock": "~3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"friendsofphp/php-cs-fixer": "~2.7",
"mockery/mockery": "~0.9",
"orchestra/testbench": "3.5.*",
"graham-campbell/testbench": "~4.0",
"superbalist/flysystem-google-storage": "~5.0"
},
"autoload": {
"psr-4": {
"Codex\\Phpdoc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Codex\\Tests\\Phpdoc\\": "tests"
}
},
"extra": {
"laravel": {
"dont-discover": [
"codex/phpdoc"
]
},
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}