-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.08 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 2.08 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
{
"name": "codex/packagist",
"type": "codex-addon",
"description": "Codex Addon - Integrates Packagist information links and macros in your projects",
"keywords": [
"laravel",
"documentation",
"markdown",
"codex",
"packagist",
"api",
"package",
"packages"
],
"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/packagist",
"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/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",
"knplabs/packagist-api": "1.5.*"
},
"autoload": {
"psr-4": {
"Codex\\Packagist\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"laravel": {
"dont-discover": [
"codex/packagist"
]
}
}
}