mirror of
https://github.com/silverstripe/silverstripe-externallinks.git
synced 2024-10-22 17:05:44 +02:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "silverstripe/externallinks",
|
|
"description": "Adds tracking of broken external links to the SilverStripe CMS",
|
|
"type": "silverstripe-vendormodule",
|
|
"keywords": ["silverstripe", "broken", "links", "href"],
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Kirk Mayo",
|
|
"email": "kirk@silverstripe.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"silverstripe/cms": "^4.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.7",
|
|
"squizlabs/php_codesniffer": "^3.0"
|
|
},
|
|
"suggest": {
|
|
"silverstripe/queuedjobs": "Provides a more efficient method of generating/updating the report"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SilverStripe\\ExternalLinks\\": "src/",
|
|
"SilverStripe\\ExternalLinks\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"expose": [
|
|
"css",
|
|
"javascript"
|
|
],
|
|
"branch-alias": {
|
|
"dev-master": "2.x-dev"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|