diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ca4052c..4ad2911 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,18 +17,26 @@ jobs: os: [ubuntu-latest] php: [8.1, 8.2, 8.3, 8.4] include: + - php: 8.4 + laravel: 13.* + testbench: 11.* + pest: 4.* - php: 8.4 laravel: 12.* testbench: 10.* + pest: 4.* - php: 8.3 laravel: 11.* testbench: 9.* + pest: 3.* - php: 8.2 laravel: 10.* testbench: 8.* + pest: 2.* - php: 8.1 laravel: 9.* testbench: 7.* + pest: 1.* name: ${{ matrix.os }} - P${{ matrix.php }} - L${{ matrix.laravel }} @@ -69,7 +77,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --dev + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "pestphp/pest:${{ matrix.pest }}" "pestphp/pest-plugin-laravel:${{ matrix.pest }}" --no-interaction --no-update --dev composer update --prefer-stable --prefer-dist --no-interaction - name: Execute tests diff --git a/composer.json b/composer.json index 8de9386..12d2912 100644 --- a/composer.json +++ b/composer.json @@ -3,16 +3,16 @@ "description": "Record metrics in your Laravel application", "type": "library", "require": { - "illuminate/redis": "^9.0|^10.0|^11.0|^12.0", - "illuminate/support": "^9.0|^10.0|^11.0|^12.0", - "illuminate/database": "^9.0|^10.0|^11.0|^12.0", - "illuminate/collections": "^9.0|^10.0|^11.0|^12.0" + "illuminate/redis": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/database": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/collections": "^9.0|^10.0|^11.0|^12.0|^13.0" }, "require-dev": { "laravel/pint": "^1.0", - "pestphp/pest": "^1.0|^2.0|^3.0", - "pestphp/pest-plugin-laravel": "^1.0|^2.0|^3.0", - "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0" + "pestphp/pest": "^1.0|^2.0|^3.0|^4.0", + "pestphp/pest-plugin-laravel": "^1.0|^2.0|^3.0|^4.0", + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0" }, "license": "MIT", "archive": {