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
Tags 5.0.0
1 merge request!10correcting replace section of composer.json
<?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