Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

[TASK] Drop support for TYPO3 8.7 #174

Merged
merged 1 commit into from
Mar 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,6 @@ jobs:
- stage: test
php: "7.2"
env: TYPO3=^9.5
- stage: test
php: "7.4"
env: TYPO3=^8.7
- stage: test
php: "7.3"
env: TYPO3=^8.7
- stage: test
php: "7.2"
env: TYPO3=^8.7
- stage: test
php: "7.1"
env: TYPO3=^8.7
- stage: release to ter
if: tag IS present AND env(TYPO3_ORG_USERNAME) IS present AND env(TYPO3_ORG_PASSWORD) IS present
php: "7.2"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ included PHPUnit package.
### Deprecated

### Removed
- Drop support for TYPO3 8.7 (#174)

### Fixed
- Fix warnings in the `travis.yml` (#172)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
},
"require": {
"php": "~7.1 || ~7.2 || ~7.3 || ~7.4",
"symfony/console": "^3.2 || ^4.0 || ^5.0",
"typo3/cms-core": "^8.7.9 || ^9.5 || ^10.3"
"symfony/console": "^4.0 || ^5.0",
"typo3/cms-core": "^9.5 || ^10.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.1",
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'constraints' => [
'depends' => [
'php' => '7.1.0-7.4.99',
'typo3' => '8.7.0-10.4.99',
'typo3' => '9.5.0-10.4.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down