From 3ca034c14b1611af79d5e6af1a322621159d0c92 Mon Sep 17 00:00:00 2001 From: Xavier Perseguers Date: Wed, 12 Oct 2011 17:33:03 +0200 Subject: [PATCH] [TASK] Update system extension information MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- ext_emconf.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ext_emconf.php b/ext_emconf.php index 16a1dbf..b68f8a1 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -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( ),