2012-09-23 11:34:29 +05:30
|
|
|
{
|
2017-01-16 18:10:05 +13:00
|
|
|
"name": "silverstripe/comments",
|
|
|
|
"description": "This module provides commenting functionality for Pages and other DataObjects on your SilverStripe site.",
|
2017-12-12 17:03:04 +13:00
|
|
|
"type": "silverstripe-vendormodule",
|
2016-11-17 10:17:57 +13:00
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"comments"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Will Rossiter",
|
|
|
|
"email": "will@fullscreen.io"
|
|
|
|
}
|
|
|
|
],
|
2017-01-16 18:10:05 +13:00
|
|
|
"require": {
|
2017-12-12 17:03:04 +13:00
|
|
|
"silverstripe/framework": "^4.0",
|
2017-01-27 23:23:56 +13:00
|
|
|
"colymba/gridfield-bulk-editing-tools": "^3.0"
|
2017-01-16 18:10:05 +13:00
|
|
|
},
|
|
|
|
"suggest": {
|
2017-01-17 16:56:30 +13:00
|
|
|
"ezyang/htmlpurifier": "Standards compliant HTML filter written in PHP",
|
2017-01-16 18:10:05 +13:00
|
|
|
"silverstripe/cms": "The SilverStripe Content Management System"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-10-09 17:26:07 +13:00
|
|
|
"phpunit/phpunit": "^5.7",
|
|
|
|
"squizlabs/php_codesniffer": "^3.0"
|
2017-01-16 18:10:05 +13:00
|
|
|
},
|
|
|
|
"extra": {
|
2017-12-12 17:03:04 +13:00
|
|
|
"expose": [
|
|
|
|
"css",
|
2018-01-29 13:04:34 +13:00
|
|
|
"javascript",
|
|
|
|
"thirdparty"
|
2017-12-12 17:03:04 +13:00
|
|
|
]
|
2017-01-16 18:10:05 +13:00
|
|
|
},
|
2017-09-14 09:41:11 +12:00
|
|
|
"scripts": {
|
2017-10-09 17:26:07 +13:00
|
|
|
"lint": "vendor/bin/phpcs src/ tests/",
|
|
|
|
"fix": "vendor/bin/phpcbf src/ tests/"
|
2017-09-14 09:41:11 +12:00
|
|
|
},
|
2017-01-17 08:57:37 +13:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\Comments\\": "src/",
|
|
|
|
"SilverStripe\\Comments\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2017-01-26 11:58:17 +13:00
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2013-04-11 15:44:59 +03:00
|
|
|
}
|