2012-09-23 08:04:29 +02:00
|
|
|
{
|
2017-01-16 06:10:05 +01:00
|
|
|
"name": "silverstripe/comments",
|
|
|
|
"description": "This module provides commenting functionality for Pages and other DataObjects on your SilverStripe site.",
|
|
|
|
"type": "silverstripe-module",
|
|
|
|
"keywords": ["silverstripe", "comments"],
|
|
|
|
"authors": [{
|
|
|
|
"name": "Will Rossiter",
|
|
|
|
"email": "will@fullscreen.io"
|
|
|
|
}],
|
|
|
|
"require": {
|
|
|
|
"silverstripe/framework": "^4.0@dev",
|
2017-01-27 11:23:56 +01:00
|
|
|
"colymba/gridfield-bulk-editing-tools": "^3.0"
|
2017-01-16 06:10:05 +01:00
|
|
|
},
|
|
|
|
"suggest": {
|
2017-01-17 04:56:30 +01:00
|
|
|
"ezyang/htmlpurifier": "Standards compliant HTML filter written in PHP",
|
2017-01-16 06:10:05 +01:00
|
|
|
"silverstripe/cms": "The SilverStripe Content Management System"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-09-13 23:41:11 +02:00
|
|
|
"phpunit/PHPUnit": "^5.7"
|
2017-01-16 06:10:05 +01:00
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
|
|
|
"dev-master": "3.x-dev"
|
|
|
|
}
|
|
|
|
},
|
2017-09-13 23:41:11 +02:00
|
|
|
"scripts": {
|
|
|
|
"lint": "phpcs src/ tests/",
|
|
|
|
"fix": "php-cs-fixer fix src/ && php-cs-fixer fix tests/"
|
|
|
|
},
|
2017-01-16 20:57:37 +01:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\Comments\\": "src/",
|
|
|
|
"SilverStripe\\Comments\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2017-01-25 23:58:17 +01:00
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2013-04-11 14:44:59 +02:00
|
|
|
}
|