-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
35 lines (35 loc) · 923 Bytes
/
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
{
"name": "vulcandigital/silverstripe-pagefeedback",
"description": "This module allows you to add a form to any page type for the purpose of accruing feedback about how a user perceives that page.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "feedback", "form", "rating"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Reece Alexander",
"email": "[email protected]"
}
],
"require":
{
"silverstripe/recipe-cms": "^1 || ^4"
},
"require-dev": {
"phpunit/PHPUnit": "^5.7",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"Vulcan\\PageFeedback\\": "src/",
"Vulcan\\PageFeedback\\Tests\\": "tests/"
}
},
"suggest": {
"silverstripe/spamprotection": "To enable spam protection features to your feedback forms"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}