-
Notifications
You must be signed in to change notification settings - Fork 80
/
composer.json
48 lines (48 loc) · 1.3 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"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": "[email protected]"
}
],
"require": {
"php": "^8.1",
"silverstripe/framework": "^5",
"colymba/gridfield-bulk-editing-tools": "^4"
},
"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",
"ezyang/htmlpurifier": "^4.16"
},
"extra": {
"expose": [
"client/dist",
"client/lang"
]
},
"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
}