diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 830677b..9e3969e 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,7 +1,7 @@ name: filament-backgrounds type: php docroot: "" -php_version: "8.1" +php_version: "8.2" webserver_type: apache-fpm xdebug_enabled: false additional_hostnames: [] diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f5d9ae9..d9d6d1b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,12 +13,17 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.2, 8.1] - laravel: [10.*] + php: [8.3, 8.2, 8.1] + laravel: [11.*, 10.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: 8.* + - laravel: 11.* + testbench: 9.* + exclude: + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index ce9859f..2ebb2f8 100644 --- a/composer.json +++ b/composer.json @@ -24,13 +24,13 @@ "php": "^8.1", "filament/filament": "^3.0.100", "spatie/laravel-package-tools": "^1.15.0", - "illuminate/contracts": "^10.21" + "illuminate/contracts": "^10.21|^11.0" }, "require-dev": { "laravel/pint": "^1.13", - "nunomaduro/collision": "^7.10", + "nunomaduro/collision": "^7.10|^8.1", "nunomaduro/larastan": "^2.6", - "orchestra/testbench": "^8.15", + "orchestra/testbench": "^8.15|^9.0", "pestphp/pest": "^2.25", "pestphp/pest-plugin-arch": "^2.4", "pestphp/pest-plugin-laravel": "^2.2",