Skip to content

Commit

Permalink
Raise to TYPO3 v13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSiepmann committed May 6, 2024
1 parent 413afa1 commit 7bd3cfa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ jobs:
typo3-version: '^12.4'
- db-version: '8'
php-version: '8.2'
typo3-version: '13.0'
typo3-version: '13.1'
- db-version: '8'
php-version: '8.3'
typo3-version: '13.0'
typo3-version: '13.1'
steps:
- uses: actions/checkout@v3

Expand All @@ -144,7 +144,7 @@ jobs:
done
- name: Install dependencies with expected TYPO3 version
run: composer require --prefer-dist --no-progress "typo3/cms-backend:${{ matrix.typo3-version }}" "typo3/cms-core:${{ matrix.typo3-version }}" "typo3/cms-dashboard:${{ matrix.typo3-version }}"
run: composer require --prefer-dist --no-progress "typo3/cms-core:${{ matrix.typo3-version }}"

- name: PHPUnit Tests
run: |-
Expand All @@ -167,9 +167,9 @@ jobs:
- php-version: '8.3'
typo3-version: '^12.4'
- php-version: '8.2'
typo3-version: '13.0'
typo3-version: '13.1'
- php-version: '8.3'
typo3-version: '13.0'
typo3-version: '13.1'
steps:
- uses: actions/checkout@v3

Expand All @@ -183,7 +183,7 @@ jobs:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install dependencies with expected TYPO3 version
run: composer require --prefer-dist --no-progress "typo3/cms-backend:${{ matrix.typo3-version }}" "typo3/cms-core:${{ matrix.typo3-version }}" "typo3/cms-dashboard:${{ matrix.typo3-version }}"
run: composer require --prefer-dist --no-progress "typo3/cms-core:${{ matrix.typo3-version }}"

- name: Code Quality (by PHPStan)
run: ./vendor/bin/phpstan analyse
4 changes: 2 additions & 2 deletions Documentation/Changelog/3.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
Breaking
--------

* Support TYPO3 v13.0, drop v11.
* Support TYPO3 v13.1, drop v11.
We only support last two TYPO3 versions.

* Drop `ext_emconf.php` this probably will remove support for none composer setups.

Features
--------

* Add Support for TYPO3 v13.0.
* Add Support for TYPO3 v13.1.

Fixes
-----
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"psr/http-server-middleware": "^1.0",
"symfony/console": "^5.2 || ^6.1 || ^7.0",
"symfony/expression-language": "^5.2 || ^6.1 || ^7.0",
"typo3/cms-backend": "^12.4 || ^13.0",
"typo3/cms-core": "^12.4 || ^13.0",
"typo3/cms-dashboard": "^12.4 || ^13.0"
"typo3/cms-backend": "^12.4 || ^13.1",
"typo3/cms-core": "^12.4 || ^13.1",
"typo3/cms-dashboard": "^12.4 || ^13.1"
},
"require-dev": {
"codappix/typo3-php-datasets": "^1.5",
Expand All @@ -45,7 +45,7 @@
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1",
"saschaegerer/phpstan-typo3": "^1.10",
"saschaegerer/phpstan-typo3": "dev-add-typo3-13_1-support",
"typo3/testing-framework": "^8.0"
},
"minimum-stability": "dev",
Expand Down

0 comments on commit 7bd3cfa

Please sign in to comment.