mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 00:16:12 +02:00

[BUGFIX] Avoid unwanted higher PHP versions (#51)

To avoid stating any untested compatibility with a (non-existent) PHP
version 7.5, the requirements in the `composer.json` need to provide
the patch-level version as well as `~7.0` works the same as `^7.0`,
while `~7.0.0` does not.
This commit is contained in:
Oliver Klee 2020-05-22 12:34:13 +02:00 committed by GitHub
parent 14602e19b5
commit be01bcec29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -48,6 +48,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Drop the dependency of `roave/security-advisories`
### Fixed
- Avoid unwanted higher PHP versions (#50)
- Stop caching `vendor/` on Travis CI (#51)
- Use the PHP version from the matrix in the CI (#48)
- Re-add the static TypoScript registration (#41)

View file

@ -25,7 +25,7 @@
"source": "https://github.com/typo3-trainer-network/tea"
},
"require": {
"php": "~7.2 || ~7.3 || ~7.4",
"php": "~7.2.0 || ~7.3.0 || ~7.4.0",
"typo3/cms-core": "^9.5.4 || ^10.2",
"typo3/cms-extbase": "^9.5 || ^10.2",
"typo3/cms-fluid": "^9.5 || ^10.2",