mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 14:16:12 +01: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:
parent
14602e19b5
commit
be01bcec29
2 changed files with 2 additions and 1 deletions
|
@ -48,6 +48,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
||||||
- Drop the dependency of `roave/security-advisories`
|
- Drop the dependency of `roave/security-advisories`
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- Avoid unwanted higher PHP versions (#50)
|
||||||
- Stop caching `vendor/` on Travis CI (#51)
|
- Stop caching `vendor/` on Travis CI (#51)
|
||||||
- Use the PHP version from the matrix in the CI (#48)
|
- Use the PHP version from the matrix in the CI (#48)
|
||||||
- Re-add the static TypoScript registration (#41)
|
- Re-add the static TypoScript registration (#41)
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
"source": "https://github.com/typo3-trainer-network/tea"
|
"source": "https://github.com/typo3-trainer-network/tea"
|
||||||
},
|
},
|
||||||
"require": {
|
"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-core": "^9.5.4 || ^10.2",
|
||||||
"typo3/cms-extbase": "^9.5 || ^10.2",
|
"typo3/cms-extbase": "^9.5 || ^10.2",
|
||||||
"typo3/cms-fluid": "^9.5 || ^10.2",
|
"typo3/cms-fluid": "^9.5 || ^10.2",
|
||||||
|
|
Loading…
Reference in a new issue