Skip to content

Commit

Permalink
Merge pull request #278 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
codedge committed Mar 5, 2024
2 parents eb22d62 + 4a69a35 commit aef429f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,30 @@
name: Tests
on: [push]

on:
- push

jobs:
run:
runs-on: ubuntu-latest

strategy:
matrix:
php: ['8.1', '8.2']
laravel: [9.*, 10.*]
laravel: ['9.*', '10.*', '11.*']
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: '8.1'

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

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
},
"require": {
"php": "^8.1",
"illuminate/support": "^9.0 || ^10.0"
"illuminate/support": "^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.39",
"orchestra/testbench": "^7.35.0 || ^8.0",
"phpunit/phpunit": "^9.6.0"
"orchestra/testbench": "^7.35.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.6.0 || ^10.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down

0 comments on commit aef429f

Please sign in to comment.