From 95852d7ed88957fa75971b6067d749ff3deb4a51 Mon Sep 17 00:00:00 2001 From: Hamza Makraz Date: Thu, 18 Jan 2024 16:18:43 +0100 Subject: [PATCH] Update to symfony/console 7.0 and phpunit 10 --- .github/workflows/ci.yml | 6 ++++-- composer.json | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a95e712..f7ca7f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,10 @@ jobs: matrix: include: - php: '7.4' - - php: '8.1' - php: '8.0' + - php: '8.1' + - php: '8.2' + - php: '8.3' fail-fast: false runs-on: ubuntu-latest @@ -39,4 +41,4 @@ jobs: composer install -n if [ "${{ matrix.mode }}" = "low-deps" ]; then composer update --prefer-lowest --prefer-stable -n; fi; - name: Tests - run: vendor/bin/phpunit \ No newline at end of file + run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index df4d500..ff76e8e 100644 --- a/composer.json +++ b/composer.json @@ -16,12 +16,12 @@ }, "require": { "php": ">=7.4", - "symfony/console": "~3.0|~4.0|~5.0|~6.0", + "symfony/console": "~3.0|~4.0|~5.0|~6.0|~7.0", "php-di/invoker": "~2.0", "psr/container": "^1.0|^2.0" }, "require-dev": { - "phpunit/phpunit": "^6.4|^7|^8|^9", + "phpunit/phpunit": "^6.4|^7|^8|^9|^10", "mnapoli/phpunit-easymock": "~1.0", "friendsofphp/php-cs-fixer": "^2.12" }