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": {
|
2022-12-13 05:42:43 +01:00
|
|
|
"php": "^8.1",
|
2024-09-30 07:04:10 +02:00
|
|
|
"silverstripe/framework": "^5.4",
|
2022-12-13 05:42:43 +01:00
|
|
|
"silverstripe/cms": "^5",
|
|
|
|
"symbiote/silverstripe-gridfieldextensions": "^4",
|
|
|
|
"silverstripe/segment-field": "^3",
|
|
|
|
"silverstripe/versioned": "^2",
|
|
|
|
"silverstripe/mimevalidator": "^3"
|
2017-08-09 01:47:47 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2023-08-09 05:07:45 +02:00
|
|
|
"phpunit/phpunit": "^9.6",
|
2024-02-02 02:08:57 +01:00
|
|
|
"squizlabs/php_codesniffer": "^3",
|
2024-04-09 06:04:13 +02:00
|
|
|
"silverstripe/documentation-lint": "^1",
|
2024-02-02 02:08:57 +01:00
|
|
|
"silverstripe/standards": "^1",
|
|
|
|
"phpstan/extension-installer": "^1.3"
|
2016-11-16 22:16:02 +01:00
|
|
|
},
|
2022-07-14 02:50:11 +02:00
|
|
|
"conflict": {
|
|
|
|
"egulias/email-validator": "^2"
|
|
|
|
},
|
2017-08-13 23:26:53 +02:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\UserForms\\": "code/",
|
2021-03-10 03:56:24 +01:00
|
|
|
"SilverStripe\\UserForms\\Tests\\": "tests/php/",
|
|
|
|
"SilverStripe\\UserForms\\Tests\\Behat\\Context\\": "tests/behat/src/"
|
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
|
|
|
},
|
2024-04-09 06:04:13 +02:00
|
|
|
"config": {
|
|
|
|
"allow-plugins": {
|
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
|
|
}
|
|
|
|
},
|
2017-08-09 01:47:47 +02:00
|
|
|
"prefer-stable": true,
|
|
|
|
"minimum-stability": "dev"
|
2023-08-09 05:07:45 +02:00
|
|
|
}
|