-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
73 lines (73 loc) · 2.47 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
{
"name": "codex/git",
"type": "codex-addon",
"description": "Codex Addon - Enables Github/Bitbucket integration & synchronisation (auto-webhook or manual) based on tags/branches.",
"keywords": [
"laravel",
"documentation",
"markdown",
"codex",
"github",
"bitbucket",
"git",
"webhook",
"synchronisation",
"sync",
"automation",
"branches",
"tags"
],
"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/git",
"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/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": {
"codex/core": "~2.0",
"php-http/guzzle6-adapter": "1.1.*",
"graham-campbell/manager": "~4.0",
"graham-campbell/github": "~7.3",
"graham-campbell/bitbucket": "~4.1",
"league/oauth2-client": "~2.3",
"league/oauth2-github": "~2.0",
"stevenmaguire/oauth2-bitbucket": "~3.0",
"vierbergenlars/php-semver": "3.0.*"
},
"autoload": {
"psr-4": {
"Codex\\Git\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"laravel": {
"dont-discover": [
"codex/git"
]
}
}
}