mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

[TASK] Drop support for PHP < 7.2 (#49)

This commit is contained in:
Oliver Klee 2019-08-12 15:47:15 +02:00 committed by GitHub
parent 1c82c6d3a2
commit 64908dad96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 15 deletions

View file

@ -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

View file

@ -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)

View file

@ -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",

View file

@ -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',
],
],