forked from silverstripe/silverstripe-userforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "silverstripe/userforms",
"description": "UserForms enables CMS users to create dynamic forms via a drag and drop interface and without getting involved in any PHP code",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"userforms"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Will Rossiter",
"email": "[email protected]"
},
{
"name": "Damian Mooyman",
"email": "[email protected]"
},
{
"name": "David Craig",
"email": "[email protected]"
},
{
"name": "Scott Hutchinson",
"email": "[email protected]"
},
{
"name": "Christopher Pitt",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"silverstripe/cms": "^4.6",
"symbiote/silverstripe-gridfieldextensions": "^3.1",
"silverstripe/segment-field": "^2.0",
"silverstripe/versioned": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"SilverStripe\\UserForms\\": "code/",
"SilverStripe\\UserForms\\Tests\\": "tests/"
}
},
"suggest": {
"colymba/gridfield-bulk-editing-tools": "Allows for bulk management of form submissions",
"silverstripe/gridfieldqueuedexport": "Export large submission as CSV through queued jobs in the background",
"silverstripe/spamprotection": "Adds support for spam protection to your user forms"
},
"scripts": {
"lint": "phpcs code/ tests/",
"lint-clean": "phpcbf code/ tests/"
},
"extra": {
"expose": [
"client/dist",
"client/lang",
"client/thirdparty",
"images"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}