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