diff --git a/.travis.yml b/.travis.yml index e749540..0468a23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,27 +60,15 @@ jobs: - stage: test php: "7.2" env: TYPO3=^8.7 - - stage: test - php: "7.1" - env: TYPO3=^8.7 - - stage: test - php: "7.0" - env: TYPO3=^8.7 - stage: test php: "7.2" env: TYPO3=^9.5 DEPENDENCIES_PREFERENCE="--prefer-lowest" - stage: test php: "7.2" env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest" - - stage: test - php: "7.1" - env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest" - - stage: test - php: "7.0" - env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest" - stage: release to ter if: tag IS present AND env(TYPO3_ORG_USERNAME) IS present AND env(TYPO3_ORG_PASSWORD) IS present - php: "7.0" + php: "7.2" before_install: skip install: skip before_script: skip diff --git a/CHANGELOG.md b/CHANGELOG.md index 920cfde..08eebac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Deprecated ### Removed +- Drop support for PHP < 7.2 (#49) - Drop support for TYPO3 7.6 and require TYPO3 >= 8.7 (#47) - Drop the TYPO3 package repository from composer.json (#43) - Drop the dependency of roave/security-advisories (#41) diff --git a/composer.json b/composer.json index 5a9cf2d..4633670 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "source": "https://github.com/oliverklee/tea" }, "require": { - "php": "~7.0 || ~7.1 || ~7.2", + "php": "~7.2", "typo3/cms-core": "^8.7.10 || ^9.5.4", "typo3/cms-extbase": "^8.7 || ^9.5", "typo3/cms-fluid": "^8.7 || ^9.5", diff --git a/ext_emconf.php b/ext_emconf.php index 5dbf20a..bba79c8 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -6,7 +6,7 @@ $EM_CONF[$_EXTKEY] = [ 'category' => 'example', 'constraints' => [ 'depends' => [ - 'php' => '7.0.0-7.2.99', + 'php' => '7.2.0-7.2.99', 'typo3' => '8.7.0-9.5.99', ], ],