-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
63 lines (63 loc) · 2.14 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
{
"name": "codex/sitemap",
"type": "codex-addon",
"description": "Codex Addon. Generates a sitemap.xml.",
"keywords": [
"laravel",
"documentation",
"markdown",
"codex",
"sitemap",
"xml",
"search-engine",
"google",
"seo"
],
"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/sitemap",
"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)"
},
"require": {
"codex/core": "~2.0",
"spatie/laravel-sitemap": "^5.2"
},
"autoload": {
"psr-4": {
"Codex\\Sitemap\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"laravel": {
"dont-discover": [
"codex/sitemap",
"spatie/laravel-sitemap"
]
}
}
}