-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "loadsys/cakephp_sitemap",
"description": "A CakePHP Plugin for adding automatic XML and HTML Sitemaps to an app",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"sitemap"
],
"license": "MIT",
"homepage": "https://github.com/loadsys/CakePHP-Sitemap",
"authors": [
{
"name": "Justin Yost",
"homepage": "https://github.com/jtyost2",
"email": "justin@loadsys.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/loadsys/CakePHP-Sitemap/issues",
"source": "https://github.com/loadsys/CakePHP-Sitemap"
},
"require": {
"php": ">=5.6.0",
"cakephp/cakephp": "~3.1",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"loadsys/loadsys_codesniffer": "~3.0",
"satooshi/php-coveralls": "~2.0"
},
"autoload": {
"psr-4": {
"Sitemap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "vendor/cakephp/cakephp/test",
"Sitemap\\Test\\": "tests"
}
}
}