2013-01-17 01:22:13 +01:00
|
|
|
{
|
2017-07-03 06:53:55 +02:00
|
|
|
"name": "silverstripe/reports",
|
2017-09-27 07:09:56 +02:00
|
|
|
"type": "silverstripe-vendormodule",
|
2017-07-03 06:53:55 +02:00
|
|
|
"description": "Reports module for SilverStripe CMS",
|
|
|
|
"homepage": "http://silverstripe.org",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"cms",
|
|
|
|
"reports"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "SilverStripe",
|
|
|
|
"homepage": "http://silverstripe.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "The SilverStripe Community",
|
|
|
|
"homepage": "http://silverstripe.org"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2017-10-12 02:32:42 +02:00
|
|
|
"silverstripe/framework": "^5",
|
|
|
|
"silverstripe/admin": "^2",
|
|
|
|
"silverstripe/versioned": "^2",
|
|
|
|
"silverstripe/vendor-plugin": "^1"
|
2016-08-29 03:55:43 +02:00
|
|
|
},
|
2017-07-03 06:53:55 +02:00
|
|
|
"require-dev": {
|
2019-01-09 20:56:19 +01:00
|
|
|
"phpunit/phpunit": "^7",
|
2019-01-10 12:22:11 +01:00
|
|
|
"squizlabs/php_codesniffer": "^3"
|
2017-07-03 06:53:55 +02:00
|
|
|
},
|
2017-07-05 23:20:17 +02:00
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
|
|
|
"dev-master": "5.x-dev"
|
2017-09-27 07:09:56 +02:00
|
|
|
},
|
|
|
|
"expose": [
|
2017-10-11 06:31:46 +02:00
|
|
|
"javascript"
|
2017-09-27 07:09:56 +02:00
|
|
|
]
|
2017-07-05 23:20:17 +02:00
|
|
|
},
|
2017-07-03 06:53:55 +02:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2019-01-09 21:12:20 +01:00
|
|
|
"SilverStripe\\Reports\\": "src/",
|
2017-07-03 06:53:55 +02:00
|
|
|
"SilverStripe\\Reports\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
2019-01-09 20:56:19 +01:00
|
|
|
"lint": "vendor/bin/phpcs src/ tests/",
|
|
|
|
"lint-clean": "vendor/bin/phpcbf src/ tests/"
|
2017-07-03 06:53:55 +02:00
|
|
|
},
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2017-07-03 23:18:21 +02:00
|
|
|
}
|