silverstripe-externallinks/composer.json

45 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2013-08-25 23:55:24 +02:00
{
"name": "silverstripe/externallinks",
"description": "Adds tracking of broken external links to the SilverStripe CMS",
"type": "silverstripe-vendormodule",
2021-11-30 01:55:20 +01:00
"keywords": [
"silverstripe",
"broken",
"links",
"href"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Kirk Mayo",
"email": "kirk@silverstripe.com"
}
],
"require": {
2022-02-10 04:18:31 +01:00
"php": "^7.4 || ^8.0",
"silverstripe/cms": "^4.0"
},
"require-dev": {
2021-10-27 07:06:53 +02:00
"phpunit/phpunit": "^9.5",
2022-07-07 05:41:58 +02:00
"squizlabs/php_codesniffer": "^3.0",
"symbiote/silverstripe-queuedjobs": "^4.9"
},
"suggest": {
"symbiote/silverstripe-queuedjobs": "Provides a more efficient method of generating/updating the report"
},
"autoload": {
"psr-4": {
"SilverStripe\\ExternalLinks\\": "src/",
2021-10-01 08:55:27 +02:00
"SilverStripe\\ExternalLinks\\Tests\\": "tests/",
"SilverStripe\\ExternalLinks\\Tests\\Behat\\Context\\": "tests/behat/src/"
}
},
"extra": {
"expose": [
2022-07-19 08:05:43 +02:00
"client/css",
"client/javascript"
2021-11-30 01:55:20 +01:00
]
},
"minimum-stability": "dev",
"prefer-stable": true
2023-03-10 00:21:30 +01:00
}