From d8c9f4db7c2cc16410f55b59ed9a87c24684c39f Mon Sep 17 00:00:00 2001 From: Daniel Gohlke Date: Wed, 5 Mar 2025 21:14:50 +0100 Subject: [PATCH] [TASK] Add support for TYPO3 14.0.x-dev --- .github/workflows/ci.yaml | 21 ++++++++++++++++++--- composer.json | 10 ++++++---- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 87cfb4f..6526575 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -140,13 +140,22 @@ jobs: typo3-version: '^12.4' - db-version: '8' php-version: '8.2' - typo3-version: '^13.0' + typo3-version: '^13.4' + - db-version: '8' + php-version: '8.3' + typo3-version: '^13.4' + - db-version: '8' + php-version: '8.4' + typo3-version: '^13.4' + - db-version: '8' + php-version: '8.2' + typo3-version: '14.0.x-dev' - db-version: '8' php-version: '8.3' - typo3-version: '^13.0' + typo3-version: '14.0.x-dev' - db-version: '8' php-version: '8.4' - typo3-version: '^13.0' + typo3-version: '14.0.x-dev' steps: - uses: actions/checkout@v3 @@ -219,6 +228,12 @@ jobs: typo3-version: '^13.4' - php-version: '8.4' typo3-version: '^13.4' + - php-version: '8.2' + typo3-version: '14.0.x-dev' + - php-version: '8.3' + typo3-version: '14.0.x-dev' + - php-version: '8.4' + typo3-version: '14.0.x-dev' steps: - uses: actions/checkout@v3 diff --git a/composer.json b/composer.json index 39bfcc0..1cebc1f 100644 --- a/composer.json +++ b/composer.json @@ -31,14 +31,14 @@ "composer-runtime-api": "^2.2", "doctrine/dbal": "^2.13 || ^3.6 || ^4.0 || 4.0.0-RC2", "symfony/console": "^5.4 || ^6.2 || ^7.0", - "typo3/cms-core": "^10.4 || ^11.5 || ^12.4 || ^13.0" + "typo3/cms-core": "^10.4 || ^11.5 || ^12.4 || ^13.0 || 14.0.x-dev" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.4", "phpstan/phpstan": "^1.10", "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.6 || ^10.0", - "typo3/testing-framework": "^6.16 || ^7.0 || ^8.0" + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.0 || ^11.0", + "typo3/testing-framework": "^6.16 || ^7.0 || ^8.0 || ^9.0" }, "extra": { "typo3/cms": { @@ -53,5 +53,7 @@ }, "lock": false, "sort-packages": true - } + }, + "minimum-stability": "dev", + "prefer-stable": true }