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

[TASK] Drop support for TYPO3 7.6 and require TYPO3 >= 8.7 (#47)

This commit is contained in:
Oliver Klee 2019-08-12 15:30:02 +02:00 committed by GitHub
parent b48bc00912
commit 5b0d040e06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View file

@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Deprecated
### Removed
- 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

@ -27,12 +27,13 @@
},
"require": {
"php": "~7.0 || ~7.1 || ~7.2",
"typo3/cms-core": "^7.6.23 || ^8.7.10",
"typo3/cms-fluid": "^7.6 || ^8.7",
"typo3/cms-frontend": "^7.6 || ^8.7"
"typo3/cms-core": "^8.7.10",
"typo3/cms-extbase": "^8.7",
"typo3/cms-fluid": "^8.7",
"typo3/cms-frontend": "^8.7"
},
"require-dev": {
"typo3/cms-fluid-styled-content": "^7.6 || ^8.7",
"typo3/cms-fluid-styled-content": "^8.7",
"helhum/typo3-composer-setup": "^0.5.4",
"squizlabs/php_codesniffer": "^3.4.2",
"helmich/typo3-typoscript-lint": "^1.5.0",

View file

@ -7,7 +7,7 @@ $EM_CONF[$_EXTKEY] = [
'constraints' => [
'depends' => [
'php' => '7.0.0-7.2.99',
'typo3' => '7.6.0-8.7.99',
'typo3' => '8.7.0-8.7.99',
],
],
'state' => 'stable',