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

[BUGFIX] Fix broken composer.json and ext_emconf.php

parent 7dc65cb7
No related branches found
No related tags found
No related merge requests found
{
"name": "sgalinski/tinymce",
"type": "typo3-cms-extension",
"description": "TinyMCE sources including a small PHP API",
"homepage": "https://www.sgalinski.de",
"license": "GPL-2.0+",
"version": "4.3.13",
"support": {
"issues": "https://forge.typo3.org/projects/extension-tinymce"
},
"require": {
"typo3/cms-core": "*"
},
"replace": {
"tinymce": "self.version",
"typo3-ter/tinymce: "self.version"
},
"autoload": {
"psr-4": {
"SGalinski\\Tinymce\\": "Classes/"
}
}
"name": "sgalinski/tinymce",
"type": "typo3-cms-extension",
"description": "TinyMCE sources including a small PHP API",
"homepage": "https://www.sgalinski.de",
"license": "GPL-2.0+",
"version": "4.3.13",
"support": {
"issues": "https://forge.typo3.org/projects/extension-tinymce"
},
"require": {
"typo3/cms-core": "*"
},
"replace": {
"tinymce": "self.version",
"typo3-ter/tinymce": "self.version"
},
"autoload": {
"psr-4": {
"SGalinski\\Tinymce\\": "Classes/"
}
}
}
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'tinyMCE',
'description' => 'TinyMCE sources including a small PHP API',
'category' => 'misc',
'version' => '4.3.13',
'state' => 'stable',
'uploadfolder' => false,
'uploadfolder' => FALSE,
'createDirs' => '',
'clearcacheonload' => false,
'clearcacheonload' => FALSE,
'author' => 'Stefan Galinski',
'author_email' => 'stefan@sgalinski.de',
'author_company' => 'sgalinski Internet Services',
'autoload' =>
[
'psr-4' => ['SGalinski\\Tinymce\\' => 'Classes']
],
'constraints' =>
[
'depends' =>
[
'php' => '5.5.0-0.0.0',
'typo3' => '6.2.0-7.6.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' =>
[
'psr-4' => ['SGalinski\\Tinymce\\' => 'Classes']
],
'constraints' =>
[
'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