mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"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",
|
|
"colymba/gridfield-bulk-editing-tools": "^3.0"
|
|
},
|
|
"suggest": {
|
|
"ezyang/htmlpurifier": "Standards compliant HTML filter written in PHP",
|
|
"silverstripe/cms": "The SilverStripe Content Management System"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.7",
|
|
"squizlabs/php_codesniffer": "^3.0"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.x-dev"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "vendor/bin/phpcs src/ tests/",
|
|
"fix": "vendor/bin/phpcbf src/ tests/"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SilverStripe\\Comments\\": "src/",
|
|
"SilverStripe\\Comments\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|