Skip to content

Commit

Permalink
chore(deps): php 8.3 and laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanduijker committed Feb 4, 2024
1 parent 2d2886d commit 8ca956b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 15 deletions.
33 changes: 20 additions & 13 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ 7.3, 7.4, 8.0, 8.1, 8.2 ]
laravel: [ 6.*, 7.*, 8.*, 9.*, 10.* ]
php: [ 7.3, 7.4, 8.0, 8.1, 8.2, 8.3 ]
laravel: [ 6.*, 7.*, 8.*, 9.*, 10.*, 11.* ]
dependency-version: [ prefer-stable ]
include:
- testbench: 9.*
laravel: 11.*
- testbench: 8.*
laravel: 10.*
- testbench: 7.*
Expand All @@ -24,25 +26,30 @@ jobs:
- testbench: 4.*
laravel: 6.*
exclude:
- php: 8.1
laravel: 6.*
- php: 8.1
laravel: 7.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*
- php: 7.3
laravel: 9.*
- php: 7.4
laravel: 9.*
- php: 7.3
laravel: 10.*
- php: 7.4
laravel: 9.*
- php: 7.4
laravel: 10.*
- php: 8.0
laravel: 10.*

- php: 8.0
laravel: 11.*
- php: 8.1
laravel: 6.*
- php: 8.1
laravel: 7.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*
- php: 8.3
laravel: 6.*
- php: 8.3
laravel: 7.*
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 @@ -21,11 +21,11 @@
],
"require": {
"php": "^7.3|^8.0",
"illuminate/database": "~6.0,!=6.9.0|~7.0|~8.0|~9.0|~10.0"
"illuminate/database": "~6.0,!=6.9.0|~7.0|~8.0|~9.0|~10.0|~11.0"
},
"require-dev": {
"larapack/dd": "^1.0",
"orchestra/testbench": "~4.0|~5.0|~6.0|~7.0|~8.0",
"orchestra/testbench": "~4.0|~5.0|~6.0|~7.0|~8.0|~8.0",
"phpunit/phpunit": "^9.3"
},
"minimum-stability": "dev",
Expand Down

0 comments on commit 8ca956b

Please sign in to comment.