silverstripe-contentreview/composer.json

48 lines
1.3 KiB
JSON
Raw Normal View History

2013-01-07 13:48:09 +01:00
{
2016-11-16 22:15:57 +01:00
"name": "silverstripe/contentreview",
"type": "silverstripe-module",
"description": "Flags pages for periodical author review (incl. reporting)",
"homepage": "http://silverstripe.org",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"cms",
"workflow"
],
"authors": [
{
"name": "SilverStripe",
"homepage": "http://silverstripe.com"
},
{
"name": "The SilverStripe Community",
"homepage": "http://silverstripe.org"
}
],
"require": {
"silverstripe/framework": "^4@dev",
"silverstripe/cms": "^4@dev",
"silverstripe/reports": "^4@dev"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
2016-11-16 22:15:57 +01:00
},
2016-11-16 23:07:37 +01:00
"suggest": {
"symbiote/silverstripe-queuedjobs": "Automatically schedules content review emails to be sent, only requiring one crontask to be created"
2015-11-18 22:37:49 +01:00
},
2017-08-24 03:00:23 +02:00
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverStripe\\ContentReview\\": "src/",
"SilverStripe\\ContentReview\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
2016-11-16 23:07:37 +01:00
}