From df747094d06415db637ac811d4478e056037e7a9 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sat, 23 Mar 2024 15:03:46 +0100 Subject: [PATCH] Update dependency version in composer.json (#578) Update dependency version in composer.json The Doctrine DBAL version requirement in the composer.json file has been updated. The previous requirement "^3.8|4.0" was altered to correct syntax as "^3.8|^4.0". This change ensures compatibility with both version >3.8.0 and 4.0.0 of this package. --- .github/workflows/infection.yml | 3 --- composer.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/infection.yml b/.github/workflows/infection.yml index 391209f1..4c2e55fb 100644 --- a/.github/workflows/infection.yml +++ b/.github/workflows/infection.yml @@ -10,9 +10,6 @@ on: jobs: mutation_testing: name: "5️⃣ Mutation Testing" - needs: - - "byte_level" - - "syntax_errors" runs-on: "ubuntu-latest" steps: - name: "Set up PHP" diff --git a/composer.json b/composer.json index a3d8c1c0..fa2924d7 100644 --- a/composer.json +++ b/composer.json @@ -94,7 +94,7 @@ "symfony/security-bundle": "Symfony firewall using a JSON API (perfect for script applications)" }, "require-dev": { - "doctrine/dbal": "^3.8|4.0", + "doctrine/dbal": "^3.8|^4.0", "doctrine/doctrine-bundle": "^2.11", "doctrine/orm": "^2.14|^3.0", "doctrine/persistence": "^3.1",