Skip to content

Commit

Permalink
chore: drop compatibility with TYPO3 v11
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Aug 27, 2024
1 parent 1574aa3 commit 9e34e3c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 18 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,10 @@ jobs:
fail-fast: false
matrix:
include:
- php-versions: '8.1'
typo3-versions: '11'
- php-versions: '8.1'
typo3-versions: '12'
- php-versions: '8.2'
typo3-versions: '11'
- php-versions: '8.2'
typo3-versions: '12'
- php-versions: '8.3'
typo3-versions: '11'
- php-versions: '8.3'
typo3-versions: '12'
steps:
Expand Down Expand Up @@ -78,7 +72,7 @@ jobs:
- name: Setup PHP version
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.3
coverage: xdebug
extensions: mbstring
- name: Get Composer Cache Directory
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Removed
- Compatibility with TYPO3 v11

## [3.0.1] - 2024-06-06

### Fixed
Expand Down
7 changes: 7 additions & 0 deletions Documentation/Changelog/Index.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.. _changelog:

Changelog
=========
Expand All @@ -10,6 +11,12 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
`Unreleased <https://github.com/jobrouter/typo3-process/compare/v3.0.1...HEAD>`_
------------------------------------------------------------------------------------

Removed
^^^^^^^


* Compatibility with TYPO3 v11

`3.0.1 <https://github.com/jobrouter/typo3-process/compare/v3.0.0...v3.0.1>`_ - 2024-06-06
----------------------------------------------------------------------------------------------

Expand Down
17 changes: 8 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
"jobrouter/rest-client": "^3.0",
"jobrouter/typo3-base": "^3.0",
"jobrouter/typo3-connector": "^3.0",
"typo3/cms-backend": "^11.5.4 || ^12.4",
"typo3/cms-core": "^11.5.4 || ^12.4",
"typo3/cms-fluid": "^11.5.4 || ^12.4",
"typo3/cms-form": "^11.5.4 || ^12.4",
"typo3/cms-frontend": "^11.5.4 || ^12.4"
"typo3/cms-backend": "^12.4",
"typo3/cms-core": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-form": "^12.4",
"typo3/cms-frontend": "^12.4"
},
"require-dev": {
"brotkrueml/coding-standards": "~6.0.0",
Expand All @@ -40,11 +40,11 @@
"phpunit/phpunit": "^10.5",
"rector/rector": "1.2.4",
"saschaegerer/phpstan-typo3": "^1.10",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"typo3/cms-dashboard": "^11.5.4 || ^12.4",
"typo3/testing-framework": "^7.0 || ^8.2"
"typo3/cms-dashboard": "^12.4",
"typo3/testing-framework": "^8.2"
},
"suggest": {
"typo3/cms-dashboard": "Use dashboard widgets for information about instance starts"
Expand Down Expand Up @@ -75,7 +75,6 @@
"dev-main": "4.0.x-dev"
},
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "jobrouter_process",
"web-dir": ".Build/web"
}
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
'constraints' => [
'depends' => [
'php' => '8.1.0-0.0.0',
'typo3' => '11.5.4-12.4.99',
'form' => '11.5.4-12.4.99',
'typo3' => '12.4.0-12.4.99',
'form' => '12.4.0-12.4.99',
'jobrouter_base' => '3.0.0-3.99.99',
'jobrouter_connector' => '3.0.0-3.99.99',
],
Expand Down

0 comments on commit 9e34e3c

Please sign in to comment.