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": {
|
2017-12-12 00:45:49 +01:00
|
|
|
"silverstripe/admin": "^1.1@dev",
|
|
|
|
"silverstripe/campaign-admin": "^1.1@dev",
|
|
|
|
"silverstripe/framework": "^4.1@dev",
|
|
|
|
"silverstripe/reports": "^4.1@dev",
|
|
|
|
"silverstripe/siteconfig": "^4.1@dev",
|
|
|
|
"silverstripe/versioned": "^1.1@dev",
|
2017-10-01 11:12:37 +02:00
|
|
|
"silverstripe/vendor-plugin": "^1.0"
|
2016-08-16 03:22:58 +02:00
|
|
|
},
|
2017-07-03 06:53:53 +02:00
|
|
|
"require-dev": {
|
2018-04-12 06:06:49 +02:00
|
|
|
"phpunit/phpunit": "^5.7"
|
2017-07-03 06:53:53 +02:00
|
|
|
},
|
2017-07-05 23:22:13 +02:00
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2018-06-15 06:25:06 +02:00
|
|
|
"4.x-dev": "4.3.x-dev"
|
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": {
|
|
|
|
"SilverStripe\\CMS\\": "code/",
|
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"
|
2017-08-09 04:53:38 +02:00
|
|
|
}
|