Skip to content
Snippets Groups Projects
Commit d025d3fd authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

Merge branch 'patch-1' into 'master'

correcting replace section of composer.json



See merge request !10
parents 3db898cd c7bbe487
No related branches found
No related tags found
1 merge request!10correcting replace section of composer.json
......@@ -3,7 +3,7 @@
"type": "typo3-cms-extension",
"description": "TinyMCE sources including a small PHP API",
"homepage": "https://www.sgalinski.de",
"license": ["GPL-2.0+"],
"license": "GPL-2.0+",
"version": "4.3.13",
"support": {
"issues": "https://forge.typo3.org/projects/extension-tinymce"
......@@ -12,7 +12,8 @@
"typo3/cms-core": "*"
},
"replace": {
"tinymce": "*"
"tinymce": "self.version",
"typo3-ter/tinymce: "self.version"
},
"autoload": {
"psr-4": {
......
<?php
$EM_CONF[$_EXTKEY] = array (
$EM_CONF[$_EXTKEY] = [
'title' => 'tinyMCE',
'description' => 'TinyMCE sources including a small PHP API',
'category' => 'misc',
......@@ -12,19 +10,18 @@ $EM_CONF[$_EXTKEY] = array (
'author' => 'Stefan Galinski',
'author_email' => 'stefan@sgalinski.de',
'author_company' => 'sgalinski Internet Services',
'autoload' =>
[
'psr-4' => ['SGalinski\\Tinymce\\' => 'Classes']
],
'constraints' =>
array (
'depends' =>
array (
'php' => '5.3.0-5.6.99',
'typo3' => '6.2.0-7.6.99',
),
'conflicts' =>
array (
),
'suggests' =>
array (
),
),
);
[
'depends' =>
[
'php' => '5.5.0-0.0.0',
'typo3' => '6.2.0-7.6.99',
],
'conflicts' => [],
'suggests' => [],
],
];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment