diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 483fc76..6caeb93 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -60,16 +60,19 @@ jobs: name: 'PHP: ${{ matrix.php }}; Laravel: ${{ matrix.laravel }}; Prefer: ${{ matrix.prefer }}' strategy: matrix: - php: ['8.1', '8.2'] - laravel: ['^9.0', '^10.0', '^11.0'] + php: ['8.1', '8.2', '8.3'] + laravel: ['^10.0', '^11.0'] prefer: ['prefer-lowest', 'prefer-stable'] include: - - laravel: '^9.0' - testbench: '^7.0' - laravel: '^10.0' testbench: '^8.0' - laravel: '^11.0' testbench: '^9.0' + exclude: + - php: '8.3' + laravel: '^10.0' + - php: '8.1' + laravel: '^11.0' steps: - name: checkout code diff --git a/composer.json b/composer.json index d1e4e37..5fd9480 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,8 @@ }, "require": { "php": "^8.1", - "illuminate/support": "^9.0 || ^10.0 || ^11.0", - "illuminate/http": "^9.0 || ^10.0 || ^11.0" + "illuminate/support": "^10.0 || ^11.0", + "illuminate/http": "^10.0 || ^11.0" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.4"