Skip to content

Commit

Permalink
Merge pull request #3 from b13/task/v12
Browse files Browse the repository at this point in the history
!!![TASK] define requirements
  • Loading branch information
bmack authored Dec 6, 2023
2 parents cdcc9fb + 47fa7d4 commit 13b1851
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 2 deletions.
1 change: 1 addition & 0 deletions Configuration/RTE/Richtextinputfields.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ editor:
removePlugins:
- resize
- autogrow
- softhyphen

processing:
overruleMode: nothing
Expand Down
2 changes: 1 addition & 1 deletion Configuration/Services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ services:
B13\Richtextinputfields\EventListener\TcaToRteConfiguration:
tags:
- name: event.listener
event: TYPO3\CMS\RteCKEditor\Form\Element\Event\AfterPrepareConfigurationForEditorEvent
identifier: 'b13/richtextinputfields/tca-to-rte-configuration'
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"extension-key": "richtextinputfields"
}
},
"require" : {
"typo3/cms-rte-ckeditor": "^11.5 || ^12.4",
"php": "^8.1"
},
"autoload": {
"psr-4": {
"B13\\Richtextinputfields\\": "Classes/"
Expand Down
17 changes: 17 additions & 0 deletions ext_emconf.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

$EM_CONF[$_EXTKEY] = [
'title' => 'richtextinputfields',
'description' => 'Rich text editor for input fields.',
'category' => 'backend',
'author' => 'b13 GmbH',
'author_email' => '[email protected]',
'author_company' => 'b13 GmbH',
'state' => 'stable',
'version' => '1.0.0',
'constraints' => [
'depends' => ['typo3' => '11.5.33-12.99.99'],
'conflicts' => [],
'suggests' => [],
],
];
2 changes: 1 addition & 1 deletion ext_localconf.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

defined('TYPO3_MODE') or die();
defined('TYPO3') or die();

(function () {
\TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiveWithOverrule(
Expand Down

0 comments on commit 13b1851

Please sign in to comment.