diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 088a6ca..9324b9b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-latest] php: [8.4, 8.3, 8.2] - laravel: ['12.*', '11.*', '10.*'] + laravel: ['10.*', '11.*', '12.*', '13.*'] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* @@ -24,6 +24,11 @@ jobs: testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 0f21194..4c655d9 100755 --- a/composer.json +++ b/composer.json @@ -18,14 +18,14 @@ ], "require": { "php": "^8.2", - "illuminate/contracts": "12.*|11.*|10.*" + "illuminate/contracts": "12.*|11.*|10.*|^13.0" }, "require-dev": { - "orchestra/testbench": "^8.0|^9.0|^10.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", "nunomaduro/collision": "^8.0|^7.8|^6.0", - "larastan/larastan": "^2.0|^3.0", - "pestphp/pest": "^2.34|^3.0", - "pestphp/pest-plugin-laravel": "^2.3|^3.0", + "larastan/larastan": "^2.0|^3.0|dev-l13", + "pestphp/pest": "^2.34|^3.0|^4.4", + "pestphp/pest-plugin-laravel": "^2.3|^3.0|^4.1", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0|^2.0", "phpstan/phpstan-phpunit": "^1.0|^2.0",