diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 140d7097..e9e64d89 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,13 +13,12 @@ jobs: strategy: fail-fast: false matrix: - php: [8.2, 8.1, 8.0, 8.2] - laravel: ["^10.0", "^9.0", "^8.0"] + php: [8.3, 8.2, 8.1] + laravel: ["^11.0", "^10.0", "^9.0"] dependency-version: [prefer-lowest, prefer-stable] exclude: - - laravel: "^10.0" - php: 8.0 - + - laravel: "^11.0" + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} steps: diff --git a/composer.json b/composer.json index 4975b0c2..961f80c3 100644 --- a/composer.json +++ b/composer.json @@ -31,16 +31,16 @@ ], "homepage": "https://github.com/spatie/activitylog", "require": { - "php": "^8.0", - "illuminate/config": "^8.0 || ^9.0 || ^10.0", - "illuminate/database": "^8.69 || ^9.27 || ^10.0", - "illuminate/support": "^8.0 || ^9.0 || ^10.0", + "php": "^8.1", + "illuminate/config": "^8.0|^9.0|^10.0|^11.0", + "illuminate/database": "^8.69|^9.27|^10.0|^11.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", "spatie/laravel-package-tools": "^1.6.3" }, "require-dev": { "ext-json": "*", - "orchestra/testbench": "^6.23 || ^7.0 || ^8.0", - "pestphp/pest": "^1.20" + "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.20|^2.0" }, "minimum-stability": "dev", "prefer-stable": true,