2012-11-01 17:29:08 +01:00
|
|
|
{
|
2017-07-03 06:53:53 +02:00
|
|
|
"name": "silverstripe/cms",
|
2017-10-01 11:12:37 +02:00
|
|
|
"type": "silverstripe-vendormodule",
|
2017-07-03 06:53:53 +02:00
|
|
|
"description": "The SilverStripe Content Management System",
|
|
|
|
"homepage": "http://silverstripe.org",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"cms"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "SilverStripe",
|
|
|
|
"homepage": "http://silverstripe.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "The SilverStripe Community",
|
|
|
|
"homepage": "http://silverstripe.org"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2024-01-24 23:39:34 +01:00
|
|
|
"silverstripe/admin": "^1.13.20",
|
2023-03-28 03:19:49 +02:00
|
|
|
"silverstripe/campaign-admin": "^1.7@dev",
|
|
|
|
"silverstripe/framework": "^4.11",
|
|
|
|
"silverstripe/reports": "^4.7@dev",
|
|
|
|
"silverstripe/siteconfig": "^4.7@dev",
|
|
|
|
"silverstripe/versioned": "^1.7@dev",
|
|
|
|
"silverstripe/versioned-admin": "^1.7@dev",
|
2020-10-07 05:16:30 +02:00
|
|
|
"silverstripe/vendor-plugin": "^1.0",
|
2022-02-10 03:50:12 +01:00
|
|
|
"php": "^7.4 || ^8.0"
|
2016-08-16 03:22:58 +02:00
|
|
|
},
|
2017-07-03 06:53:53 +02:00
|
|
|
"require-dev": {
|
2021-10-27 23:40:52 +02:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2020-12-21 22:25:15 +01:00
|
|
|
"squizlabs/php_codesniffer": "^3"
|
2017-07-03 06:53:53 +02:00
|
|
|
},
|
2017-07-05 23:22:13 +02:00
|
|
|
"extra": {
|
2017-10-01 11:12:37 +02:00
|
|
|
"expose": [
|
|
|
|
"client/dist",
|
|
|
|
"client/lang"
|
|
|
|
]
|
2017-07-05 23:22:13 +02:00
|
|
|
},
|
2017-07-03 06:53:53 +02:00
|
|
|
"scripts": {
|
2017-08-09 04:53:38 +02:00
|
|
|
"lint": "phpcs -s code/ tests/php/ tests/behat/src/",
|
|
|
|
"lint-clean": "phpcbf code/ tests/php/ tests/behat/src/"
|
2017-07-03 06:53:53 +02:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2023-03-10 00:21:27 +01:00
|
|
|
"SilverStripe\\CMS\\": [
|
|
|
|
"code/",
|
|
|
|
"_legacy/"
|
|
|
|
],
|
2017-08-09 04:53:38 +02:00
|
|
|
"SilverStripe\\CMS\\Tests\\": "code/php/",
|
2017-07-03 06:53:53 +02:00
|
|
|
"SilverStripe\\CMS\\Tests\\Behaviour\\": "tests/behat/src/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"prefer-stable": true,
|
|
|
|
"minimum-stability": "dev"
|
2023-09-07 00:24:09 +02:00
|
|
|
}
|