silverstripe-googlesitemaps/composer.json

54 lines
1.5 KiB
JSON
Raw Normal View History

2012-12-07 23:55:46 +01:00
{
2023-02-13 01:38:57 +01:00
"name": "wilr/silverstripe-googlesitemaps",
"description": "SilverStripe support for the Google Sitemaps XML, enabling Google and other search engines to see all urls on your site. This helps your SilverStripe website rank well in search engines, and to encourage the information on your site to be discovered quickly.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"googlesitemaps",
"seo"
],
"homepage": "https://github.com/wilr/silverstripe-googlesitemaps",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Will Rossiter",
"email": "will@fullscreen.io"
}
],
"require": {
"php": "^8.1",
"silverstripe/framework": "^5"
},
2017-10-19 22:05:18 +02:00
"require-dev": {
2023-02-13 01:38:57 +01:00
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3"
2018-05-22 02:58:09 +02:00
},
"replace": {
2023-02-13 01:38:57 +01:00
"silverstripe/googlesitemaps": "*"
2017-10-19 22:05:18 +02:00
},
2023-02-13 01:38:57 +01:00
"extra": {
2017-10-19 22:05:18 +02:00
"branch-alias": {
2023-05-18 09:18:54 +02:00
"dev-main": "3.x-dev"
2017-10-19 22:05:18 +02:00
},
"expose": [
"images",
"css"
]
},
"autoload": {
"psr-4": {
"Wilr\\GoogleSitemaps\\": "src/",
"Wilr\\GoogleSitemaps\\Tests\\": "tests/"
}
},
"prefer-stable": true,
2023-02-13 01:38:57 +01:00
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"silverstripe/recipe-plugin": true
}
}
2013-01-03 22:22:33 +01:00
}