Skip to content

Commit

Permalink
Merge pull request #214 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
freekmurze authored Mar 8, 2024
2 parents ead179a + bd13cfc commit 3e484ca
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
name: run-tests

on: [push]
on:
- push

jobs:
test:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: [8.3, 8.2, 8.1, 8.0]
laravel: [9.*, 8.*, 10.*]
laravel: ['8.*', '9.*', '10.*', '11.*']
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
Expand All @@ -19,11 +20,17 @@ jobs:
testbench: 7.*
- laravel: 8.*
testbench: ^6.23
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 8.*
php: 8.3
- laravel: 11.*
php: 8.1
- laravel: 11.*
php: 8.0

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
],
"require": {
"php": "^8.0",
"illuminate/http": "^9.0|^8.0|^10.0",
"illuminate/support": "^9.0|^8.0|^10.0"
"illuminate/http": "^9.0|^8.0|^10.0|^11.0",
"illuminate/support": "^9.0|^8.0|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
"orchestra/testbench": "^7.0|^6.23|^8.0",
"pestphp/pest": "^1.22"
"orchestra/testbench": "^7.0|^6.23|^8.0|^9.0",
"pestphp/pest": "^1.22|^2.34"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 3e484ca

Please sign in to comment.