From 94bc7b337cd24b79f3ca40a70ed331c4af356aac Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Mon, 25 Nov 2024 12:08:48 +0100 Subject: [PATCH] Fix support for PHP 8.4 (#10) --- .github/workflows/test-application.yaml | 1 - composer.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test-application.yaml b/.github/workflows/test-application.yaml index ac77ce2..1d19f7a 100644 --- a/.github/workflows/test-application.yaml +++ b/.github/workflows/test-application.yaml @@ -46,7 +46,6 @@ jobs: - php-version: '8.4' coverage: false dependency-versions: 'highest' - composer-options: '--ignore-platform-reqs' env: SYMFONY_DEPRECATIONS_HELPER: weak diff --git a/composer.json b/composer.json index 39a6e97..2a68354 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "license": "proprietary", "type": "sulu-bundle", "require": { - "php": "8.0.* || 8.1.* || 8.2.* || 8.3.*", + "php": "8.0.* || 8.1.* || 8.2.* || 8.3.* || 8.4.*", "doctrine/dbal": "^2.13 || ^3.0", "doctrine/doctrine-bundle": "^2.5", "doctrine/orm": "^2.11",