Skip to content
Snippets Groups Projects
Commit c7bbe487 authored by Alexander Grein's avatar Alexander Grein
Browse files

Add autoload; increasing min php version; change array to short syntax

parent 982d7d1d
No related branches found
No related tags found
1 merge request!10correcting replace section of composer.json
<?php $EM_CONF[$_EXTKEY] = [
$EM_CONF[$_EXTKEY] = array (
'title' => 'tinyMCE', 'title' => 'tinyMCE',
'description' => 'TinyMCE sources including a small PHP API', 'description' => 'TinyMCE sources including a small PHP API',
'category' => 'misc', 'category' => 'misc',
...@@ -12,19 +10,18 @@ $EM_CONF[$_EXTKEY] = array ( ...@@ -12,19 +10,18 @@ $EM_CONF[$_EXTKEY] = array (
'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' =>
[
'psr-4' => ['SGalinski\\Tinymce\\' => 'Classes']
],
'constraints' => 'constraints' =>
array ( [
'depends' => 'depends' =>
array ( [
'php' => '5.3.0-5.6.99', 'php' => '5.5.0-0.0.0',
'typo3' => '6.2.0-7.6.99', 'typo3' => '6.2.0-7.6.99',
), ],
'conflicts' => 'conflicts' => [],
array ( 'suggests' => [],
), ],
'suggests' => ];
array (
),
),
);
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