Skip to content

Commit

Permalink
Revert "Add Laravel 11 and PHP 8.2/8.3 support"
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranb authored Jul 24, 2024
1 parent 7e50f3f commit f0e9c3d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
27 changes: 19 additions & 8 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,28 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.3, 8.2, 8.1]
laravel: ['10.*', '11.*']
php: [8.1, 8.0, 7.4]
laravel: [7.*, 8.*, 9.*, 10.*]
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
exclude:
- laravel: 11.*
php: 8.1
- laravel: 7.*
php: 8.1
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 7.4
- laravel: 10.*
php: 8.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

steps:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
}
],
"require": {
"php": "^8.1 || ^8.2 || ^8.3",
"illuminate/support": "^10.0 || ^11.0"
"php": "^7.4 || ^8.0 || ^8.1",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
Expand Down

0 comments on commit f0e9c3d

Please sign in to comment.