From 95e867488bcd23cc67345c33dfd099772211d3fd Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Fri, 17 May 2019 17:12:41 +0200 Subject: [PATCH] Remove supported TYPO3 version lower 9.5 --- .travis.yml | 1 - composer.json | 7 +++---- ext_emconf.php | 8 ++++---- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5bdda12..bf0024e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,6 @@ env: - typo3DatabaseUsername="travis" - typo3DatabasePassword="" matrix: - - TYPO3_VERSION="^8.7" - TYPO3_VERSION="^9.5" matrix: diff --git a/composer.json b/composer.json index 0cdc272..6de2fad 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ }, "require": { "php": ">=7.2.0 <8", - "typo3/cms-core": "^8.7 || ^9.5", + "typo3/cms-core": "^9.5", "ruflin/elastica": "^3.2" }, "suggests": { @@ -25,11 +25,10 @@ }, "require-dev": { "squizlabs/php_codesniffer": "^3.4", - "typo3/testing-framework": "^2.0 || ^4.12", - "typo3/cms-form": "^8.7 || ^9.5" + "typo3/testing-framework": "^4.12", + "typo3/cms-form": "^9.5" }, "config": { - "optimize-autoloader": true, "vendor-dir": ".Build/vendor", "bin-dir": ".Build/bin" }, diff --git a/ext_emconf.php b/ext_emconf.php index 6057cf0..069929d 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -7,8 +7,8 @@ $EM_CONF[$_EXTKEY] = [ 'clearCacheOnLoad' => 1, 'constraints' => [ 'depends' => [ - 'typo3' => '8.7.0-9.5.99', - 'php' => '7.0.0-7.2.99' + 'typo3' => '9.5.7-9.5.99', + 'php' => '7.2.0-7.3.99' ], 'conflicts' => [], ], @@ -17,8 +17,8 @@ $EM_CONF[$_EXTKEY] = [ 'Codappix\\SearchCore\\' => 'Classes', ], ], - 'state' => 'beta', - 'version' => '0.0.7', + 'state' => 'stable', + 'version' => '1.0.0', 'author' => 'Daniel Siepmann', 'author_email' => 'coding@daniel-siepmann.de', ];