From 633879153f04473e40819974c0fe6108cf57720a Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Mon, 25 Nov 2024 10:09:09 +0100 Subject: [PATCH] update deps --- .github/workflows/run-tests-pest.yml | 2 +- .github/workflows/run-tests-phpunit.yml | 2 +- composer.json | 2 +- configure.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests-pest.yml b/.github/workflows/run-tests-pest.yml index aa91a3e..ce0d1dc 100644 --- a/.github/workflows/run-tests-pest.yml +++ b/.github/workflows/run-tests-pest.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.4, 8.3, 8.2] + php: [8.4] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/.github/workflows/run-tests-phpunit.yml b/.github/workflows/run-tests-phpunit.yml index e50d143..260c791 100644 --- a/.github/workflows/run-tests-phpunit.yml +++ b/.github/workflows/run-tests-phpunit.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.3, 8.2, 8.1] + php: [8.4] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index c0d6342..f53dfcf 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": "^8.2" + "php": "^8.4" }, "require-dev": { :require_dev_testing, diff --git a/configure.php b/configure.php index 3bbcc23..c9dd639 100644 --- a/configure.php +++ b/configure.php @@ -140,7 +140,7 @@ function setupTestingLibrary(string $testingLibrary): void ); replace_in_file(__DIR__.'/composer.json', [ - ':require_dev_testing' => '"pestphp/pest": "^2.20"', + ':require_dev_testing' => '"pestphp/pest": "^3.0"', ':scripts_testing' => '"test": "vendor/bin/pest", "test-coverage": "vendor/bin/pest --coverage"', ':plugins_testing' => '"pestphp/pest-plugin": true',