-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
32 lines (32 loc) · 951 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
{
"description": "Provides a form finisher to save the form data to the database and a backend module to download the data.",
"type": "neos-package",
"homepage": "https://github.com/punktDe/form-persistence",
"name": "punktde/form-persistence",
"license": "MIT",
"require": {
"neos/neos": "^5.0 || ^7.0 || ^8.0",
"neos/form": "*",
"neos/fusion": "*",
"neos/utility-arrays": "*",
"league/csv": "^9.0",
"neos/swiftmailer": ">=7.0",
"phpoffice/phpspreadsheet": "^3.3"
},
"require-dev": {
"phpstan/phpstan": "^1.4"
},
"suggest": {
"neos/form-builder": "Adds a builder for the Flow Form Framework to the Neos CMS backend."
},
"autoload": {
"psr-4": {
"PunktDe\\Form\\Persistence\\": "Classes/"
}
},
"extra": {
"neos": {
"package-key": "PunktDe.Form.Persistence"
}
}
}