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

[FEATURE] Add support for PHP 7.3 (#51)

This commit is contained in:
Oliver Klee 2019-08-12 16:01:12 +02:00 committed by GitHub
parent fce8d64606
commit 37d8935efa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 2 deletions

View file

@ -54,6 +54,12 @@ script:
jobs:
include:
- stage: test
php: "7.3"
env: TYPO3=^9.5
- stage: test
php: "7.3"
env: TYPO3=^9.5 DEPENDENCIES_PREFERENCE="--prefer-lowest"
- stage: test
php: "7.2"
env: TYPO3=^9.5

View file

@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
## x.y.z
### Added
- Add support for PHP 7.3 (#51)
- Add support for TYPO3 9.6 (#48)
- Add PHP_CodeSniffer to the Travis CI build (#44,#46)
- Auto-release to the TER (#34)

View file

@ -26,7 +26,7 @@
"source": "https://github.com/oliverklee/tea"
},
"require": {
"php": "~7.2",
"php": "~7.2 || ~7.3",
"typo3/cms-core": "^9.5.4",
"typo3/cms-extbase": "^9.5",
"typo3/cms-fluid": "^9.5",

View file

@ -6,7 +6,7 @@ $EM_CONF[$_EXTKEY] = [
'category' => 'example',
'constraints' => [
'depends' => [
'php' => '7.2.0-7.2.99',
'php' => '7.2.0-7.3.99',
'typo3' => '9.5.0-9.5.99',
],
],