2012-09-21 12:11:46 +02:00
|
|
|
{
|
2016-11-16 22:16:02 +01:00
|
|
|
"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",
|
2017-10-18 11:02:49 +02:00
|
|
|
"type": "silverstripe-vendormodule",
|
2016-11-16 22:16:02 +01:00
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"userforms"
|
|
|
|
],
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Will Rossiter",
|
|
|
|
"email": "will@fullscreen.io"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Damian Mooyman",
|
|
|
|
"email": "damian@silverstripe.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "David Craig",
|
|
|
|
"email": "david@silverstripe.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Scott Hutchinson",
|
|
|
|
"email": "scott@silverstripe.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Christopher Pitt",
|
|
|
|
"email": "chris@silverstripe.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2020-05-28 03:14:34 +02:00
|
|
|
"php": ">=7.1",
|
2020-06-09 11:01:09 +02:00
|
|
|
"silverstripe/cms": "^4.6",
|
2018-01-23 00:56:46 +01:00
|
|
|
"symbiote/silverstripe-gridfieldextensions": "^3.1",
|
2017-11-20 05:48:12 +01:00
|
|
|
"silverstripe/segment-field": "^2.0",
|
2020-05-11 03:55:33 +02:00
|
|
|
"silverstripe/versioned": "^1.0",
|
|
|
|
"silverstripe/mimevalidator": "^2.0"
|
2017-08-09 01:47:47 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-12-08 02:56:47 +01:00
|
|
|
"sminnee/phpunit": "^5.7",
|
2017-11-20 05:48:12 +01:00
|
|
|
"squizlabs/php_codesniffer": "^3.0"
|
2016-11-16 22:16:02 +01:00
|
|
|
},
|
2017-08-13 23:26:53 +02:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\UserForms\\": "code/",
|
2017-08-15 23:31:47 +02:00
|
|
|
"SilverStripe\\UserForms\\Tests\\": "tests/"
|
2017-08-13 23:26:53 +02:00
|
|
|
}
|
|
|
|
},
|
2016-11-16 22:16:02 +01:00
|
|
|
"suggest": {
|
|
|
|
"colymba/gridfield-bulk-editing-tools": "Allows for bulk management of form submissions",
|
2020-05-26 22:55:37 +02:00
|
|
|
"silverstripe/gridfieldqueuedexport": "Export large submission as CSV through queued jobs in the background",
|
|
|
|
"silverstripe/spamprotection": "Adds support for spam protection to your user forms"
|
2016-11-16 22:16:02 +01:00
|
|
|
},
|
2020-05-05 17:32:54 +02:00
|
|
|
"scripts": {
|
|
|
|
"lint": "phpcs code/ tests/",
|
|
|
|
"lint-clean": "phpcbf code/ tests/"
|
|
|
|
},
|
2017-02-03 16:17:09 +01:00
|
|
|
"extra": {
|
2017-10-18 11:02:49 +02:00
|
|
|
"expose": [
|
|
|
|
"client/dist",
|
|
|
|
"client/lang",
|
|
|
|
"images"
|
|
|
|
]
|
2017-08-09 01:47:47 +02:00
|
|
|
},
|
|
|
|
"prefer-stable": true,
|
|
|
|
"minimum-stability": "dev"
|
2013-04-10 01:59:42 +02:00
|
|
|
}
|