Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify TYPO3 v10 support in composer.json #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ TYPO3:
SaveRepeatableToDatabase:
formEditor:
label: 'Save repeatable into database'
iconIdentifier: 't3-form-icon-finisher'
iconIdentifier: form-finisher
formElementsDefinition:
Form:
formEditor:
Expand All @@ -23,7 +23,10 @@ TYPO3:
1576505658:
identifier: 'SaveRepeatableToDatabase'
editors:
__inheritances:
10: 'TYPO3.CMS.Form.mixins.formElementMixins.BaseCollectionEditorsMixin'
100:
identifier: header
templateName: Inspector-CollectionElementHeaderEditor
label: 'Save repeatable into database'
9999:
identifier: removeButton
templateName: Inspector-RemoveElementEditor
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
}
],
"require": {
"typo3/cms-core": "^8.7.0 || ^9.5.0",
"typo3/cms-form": "^8.7.0 || ^9.5.0",
"php": ">=7.2.0 <7.4.99"
"typo3/cms-core": "^8.7.0 || ^9.5.0 || ^10.4.0 || ^11.5.0",
"typo3/cms-form": "^8.7.0 || ^9.5.0 || ^10.4.0 || ^11.5.0",
"php": ">=7.2.0 <7.4.99 || >8.0.0"
},
"suggest": {
"tritum/repeatable-form-elements": "You may want the repeatable container from TRITUM"
Expand Down
1 change: 1 addition & 0 deletions ext_typoscript_setup.typoscript
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// The configurations in the registered file are meant for the Form Editor module.
module.tx_form.settings.yamlConfigurations {
234 = EXT:em_form_repeatablesave/Configuration/Yaml/SaveRepeatableToDatabaseFormEditorSetup.yaml
235 = EXT:em_form_repeatablesave/Configuration/Yaml/SaveRepeatableToDatabaseFormEngineSetup.yaml
}

// The configurations in the registered file are meant for the frontend plugin
Expand Down