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.",
|
2017-12-12 05:03:04 +01:00
|
|
|
"type": "silverstripe-vendormodule",
|
2016-11-16 22:17:57 +01:00
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"comments"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Will Rossiter",
|
|
|
|
"email": "will@fullscreen.io"
|
|
|
|
}
|
|
|
|
],
|
2017-01-16 06:10:05 +01:00
|
|
|
"require": {
|
2022-02-10 03:55:36 +01:00
|
|
|
"php": "^7.4 || ^8.0",
|
2023-03-28 03:54:42 +02:00
|
|
|
"silverstripe/framework": "^4.10",
|
2019-03-22 03:52:04 +01:00
|
|
|
"colymba/gridfield-bulk-editing-tools": "^3.0.0-beta4"
|
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": {
|
2021-10-27 07:03:55 +02:00
|
|
|
"phpunit/phpunit": "^9.5",
|
2022-07-14 02:06:51 +02:00
|
|
|
"squizlabs/php_codesniffer": "^3.0",
|
|
|
|
"ezyang/htmlpurifier": "^4.14"
|
2017-01-16 06:10:05 +01:00
|
|
|
},
|
|
|
|
"extra": {
|
2017-12-12 05:03:04 +01:00
|
|
|
"expose": [
|
2019-11-11 00:18:54 +01:00
|
|
|
"client/dist",
|
|
|
|
"client/lang",
|
2021-03-04 05:05:29 +01:00
|
|
|
"css"
|
2017-12-12 05:03:04 +01:00
|
|
|
]
|
2017-01-16 06:10:05 +01:00
|
|
|
},
|
2017-09-13 23:41:11 +02:00
|
|
|
"scripts": {
|
2017-10-09 06:26:07 +02:00
|
|
|
"lint": "vendor/bin/phpcs src/ tests/",
|
|
|
|
"fix": "vendor/bin/phpcbf src/ tests/"
|
2017-09-13 23:41:11 +02:00
|
|
|
},
|
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
|
2023-03-10 00:21:29 +01:00
|
|
|
}
|