From d64d4c697ff5e6e56c3dfcea7d04e14d05e21908 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Sat, 21 Jun 2025 15:27:55 +0200 Subject: [PATCH] add symfony 7 support + adjust CI --- pkg/simple-client/.github/workflows/ci.yml | 6 +++--- pkg/simple-client/composer.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/simple-client/.github/workflows/ci.yml b/pkg/simple-client/.github/workflows/ci.yml index 6b24b0f30..604442a2f 100644 --- a/pkg/simple-client/.github/workflows/ci.yml +++ b/pkg/simple-client/.github/workflows/ci.yml @@ -10,12 +10,12 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.4', '8.0', '8.1', '8.2'] + php: ['8.1', '8.2', '8.3', '8.4'] name: PHP ${{ matrix.php }} tests steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: @@ -24,7 +24,7 @@ jobs: - run: php Tests/fix_composer_json.php - - uses: "ramsey/composer-install@v1" + - uses: "ramsey/composer-install@v3" with: composer-options: "--prefer-source" diff --git a/pkg/simple-client/composer.json b/pkg/simple-client/composer.json index 2d2bd3710..03bda03b4 100644 --- a/pkg/simple-client/composer.json +++ b/pkg/simple-client/composer.json @@ -10,7 +10,7 @@ "enqueue/enqueue": "^0.10", "queue-interop/amqp-interop": "^0.8.2", "queue-interop/queue-interop": "^0.8", - "symfony/config": "^5.4|^6.0" + "symfony/config": "^6.0|^7.0" }, "require-dev": { "phpunit/phpunit": "^9.5",