[TASK] Update system extension information

When shipped with TYPO3, system extensions should be stable, have a
version that is at least 1.0.0, have a version that is higher than
in TYPO3 4.5 LTS and should have at least the same basic dependencies
as the Core itself.

Change-Id: I141cd5a2254ae9430d3047a7506b4ae3cf9e7c9e
Resolves: #30853
Releases: 4.6
Reviewed-on: http://review.typo3.org/5743
Reviewed-by: Xavier Perseguers
Tested-by: Xavier Perseguers
Reviewed-by: Björn Pedersen
Tested-by: Björn Pedersen
This commit is contained in:
Xavier Perseguers 2011-10-12 17:33:03 +02:00
parent 794ceb82df
commit 3ca034c14b

View file

@ -21,7 +21,7 @@ $EM_CONF[$_EXTKEY] = array(
'conflicts' => '',
'priority' => '',
'module' => '',
'state' => 'beta',
'state' => 'stable',
'internal' => '',
'uploadfolder' => 0,
'createDirs' => '',
@ -29,11 +29,11 @@ $EM_CONF[$_EXTKEY] = array(
'clearCacheOnLoad' => 0,
'lockType' => 'system',
'author_company' => 'Web-Empowered Church',
'version' => '0.1.0',
'version' => '1.0.0',
'constraints' => array(
'depends' => array(
'typo3' => '4.4.0-0.0.0',
'php' => '5.2.0-0.0.0',
'php' => '5.3.0-0.0.0',
'typo3' => '4.6.0-0.0.0',
),
'conflicts' => array(
),