mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "silverstripe/comments",
|
|
"description": "This module provides commenting functionality for Pages and other DataObjects on your SilverStripe site.",
|
|
"type": "silverstripe-vendormodule",
|
|
"keywords": [
|
|
"silverstripe",
|
|
"comments"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Will Rossiter",
|
|
"email": "will@fullscreen.io"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.3 || ^8.0",
|
|
"silverstripe/framework": "^4.10",
|
|
"colymba/gridfield-bulk-editing-tools": "^3.0.0-beta4"
|
|
},
|
|
"suggest": {
|
|
"ezyang/htmlpurifier": "Standards compliant HTML filter written in PHP",
|
|
"silverstripe/cms": "The SilverStripe Content Management System"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"squizlabs/php_codesniffer": "^3.0"
|
|
},
|
|
"extra": {
|
|
"expose": [
|
|
"client/dist",
|
|
"client/lang",
|
|
"css"
|
|
]
|
|
},
|
|
"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
|
|
}
|