mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:56:12 +01:00
[TASK] Drop support for PHP < 7.2 (#49)
This commit is contained in:
parent
1c82c6d3a2
commit
64908dad96
4 changed files with 4 additions and 15 deletions
14
.travis.yml
14
.travis.yml
|
@ -60,27 +60,15 @@ jobs:
|
||||||
- stage: test
|
- stage: test
|
||||||
php: "7.2"
|
php: "7.2"
|
||||||
env: TYPO3=^8.7
|
env: TYPO3=^8.7
|
||||||
- stage: test
|
|
||||||
php: "7.1"
|
|
||||||
env: TYPO3=^8.7
|
|
||||||
- stage: test
|
|
||||||
php: "7.0"
|
|
||||||
env: TYPO3=^8.7
|
|
||||||
- stage: test
|
- stage: test
|
||||||
php: "7.2"
|
php: "7.2"
|
||||||
env: TYPO3=^9.5 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
env: TYPO3=^9.5 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
||||||
- stage: test
|
- stage: test
|
||||||
php: "7.2"
|
php: "7.2"
|
||||||
env: TYPO3=^8.7 DEPENDENCIES_PREFERENCE="--prefer-lowest"
|
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
|
- stage: release to ter
|
||||||
if: tag IS present AND env(TYPO3_ORG_USERNAME) IS present AND env(TYPO3_ORG_PASSWORD) IS present
|
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
|
before_install: skip
|
||||||
install: skip
|
install: skip
|
||||||
before_script: skip
|
before_script: skip
|
||||||
|
|
|
@ -18,6 +18,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
- Drop support for PHP < 7.2 (#49)
|
||||||
- Drop support for TYPO3 7.6 and require TYPO3 >= 8.7 (#47)
|
- Drop support for TYPO3 7.6 and require TYPO3 >= 8.7 (#47)
|
||||||
- Drop the TYPO3 package repository from composer.json (#43)
|
- Drop the TYPO3 package repository from composer.json (#43)
|
||||||
- Drop the dependency of roave/security-advisories (#41)
|
- Drop the dependency of roave/security-advisories (#41)
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
"source": "https://github.com/oliverklee/tea"
|
"source": "https://github.com/oliverklee/tea"
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": "~7.0 || ~7.1 || ~7.2",
|
"php": "~7.2",
|
||||||
"typo3/cms-core": "^8.7.10 || ^9.5.4",
|
"typo3/cms-core": "^8.7.10 || ^9.5.4",
|
||||||
"typo3/cms-extbase": "^8.7 || ^9.5",
|
"typo3/cms-extbase": "^8.7 || ^9.5",
|
||||||
"typo3/cms-fluid": "^8.7 || ^9.5",
|
"typo3/cms-fluid": "^8.7 || ^9.5",
|
||||||
|
|
|
@ -6,7 +6,7 @@ $EM_CONF[$_EXTKEY] = [
|
||||||
'category' => 'example',
|
'category' => 'example',
|
||||||
'constraints' => [
|
'constraints' => [
|
||||||
'depends' => [
|
'depends' => [
|
||||||
'php' => '7.0.0-7.2.99',
|
'php' => '7.2.0-7.2.99',
|
||||||
'typo3' => '8.7.0-9.5.99',
|
'typo3' => '8.7.0-9.5.99',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue