silverstripe-contentreview/composer.json

53 lines
1.5 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-vendormodule",
2016-11-16 22:15:57 +01:00
"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": {
2022-02-11 04:30:49 +01:00
"php": "^7.4 || ^8.0",
"silverstripe/vendor-plugin": "^1",
2021-11-01 02:35:22 +01:00
"silverstripe/framework": "^4.10",
"silverstripe/cms": "^4.2",
"silverstripe/reports": "^4.2",
"silverstripe/siteconfig": "^4.2"
},
"require-dev": {
2021-11-01 02:35:22 +01:00
"silverstripe/recipe-testing": "^2",
2022-07-08 02:00:12 +02:00
"squizlabs/php_codesniffer": "^3",
"symbiote/silverstripe-queuedjobs": "^4.9"
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": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"SilverStripe\\ContentReview\\": "src/",
2021-11-12 06:24:50 +01:00
"SilverStripe\\ContentReview\\Tests\\": "tests/php/",
"SilverStripe\\ContentReview\\Tests\\Behat\\Context\\": "tests/behat/src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
2021-11-12 06:24:50 +01:00
}