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": {
|
2022-08-04 07:36:54 +02:00
|
|
|
"php": "^8.1",
|
2023-12-13 02:15:44 +01:00
|
|
|
"silverstripe/admin": "^2.2",
|
2022-08-04 07:36:54 +02:00
|
|
|
"silverstripe/campaign-admin": "^2",
|
2023-12-13 02:15:44 +01:00
|
|
|
"silverstripe/framework": "^5.2",
|
2022-08-04 07:36:54 +02:00
|
|
|
"silverstripe/reports": "^5",
|
|
|
|
"silverstripe/siteconfig": "^5",
|
|
|
|
"silverstripe/versioned": "^2",
|
2022-11-21 05:50:37 +01:00
|
|
|
"silverstripe/versioned-admin": "^2",
|
2022-08-04 07:36:54 +02:00
|
|
|
"silverstripe/vendor-plugin": "^2"
|
2016-08-16 03:22:58 +02:00
|
|
|
},
|
2017-07-03 06:53:53 +02:00
|
|
|
"require-dev": {
|
2023-08-09 04:59:43 +02:00
|
|
|
"phpunit/phpunit": "^9.6",
|
2022-08-09 07:24:39 +02:00
|
|
|
"squizlabs/php_codesniffer": "^3.7"
|
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": {
|
2022-08-04 07:36:54 +02: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-08-09 04:59:43 +02:00
|
|
|
}
|