From b8b69d937ac9b19bfd1b440a287e6795a51b4b06 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 5 May 2025 08:11:42 +0200 Subject: [PATCH] replace the PHPUnit bridge with native PHPUnit 11.5 --- .github/workflows/ci.yaml | 7 ++----- composer.json | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6e69a20..174a2d4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -116,10 +116,7 @@ jobs: run: | composer update --no-progress ${{ matrix.composer-options }} - - name: 'Install PHPUnit' - run: 'vendor/bin/simple-phpunit install' - - name: 'Run tests' run: | - vendor/bin/simple-phpunit --testsuite="unit tests" - vendor/bin/simple-phpunit --testsuite="integration tests" + vendor/bin/phpunit --testsuite="unit tests" + vendor/bin/phpunit --testsuite="integration tests" diff --git a/composer.json b/composer.json index 1736045..1c0320a 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ }, "require-dev": { "phpstan/phpstan": "^2.1", - "symfony/phpunit-bridge": "^6.4||^7.0", + "phpunit/phpunit": "^11.5", "symfony/translation": "^6.4||^7.0" }, "conflict": {