mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "silverstripe/reports",
|
|
"type": "silverstripe-vendormodule",
|
|
"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": {
|
|
"silverstripe/framework": "^5",
|
|
"silverstripe/admin": "^2",
|
|
"silverstripe/versioned": "^2",
|
|
"silverstripe/vendor-plugin": "^1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "5.x-dev"
|
|
},
|
|
"expose": [
|
|
"javascript"
|
|
]
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SilverStripe\\Reports\\": "code/",
|
|
"SilverStripe\\Reports\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "phpcs code/ tests/",
|
|
"lint-clean": "phpcbf code/ tests/"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|