Skip to content

Commit

Permalink
Merge pull request #144 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
dwightwatson authored Feb 27, 2024
2 parents 2f68f0c + 6c03f54 commit 7db94af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
name: test

on: [push]
on:
- push

jobs:
test:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.1, 8.2]
laravel: [9.*, 10.*]
laravel: ['9.*', '10.*', '11.*']
stability: [prefer-lowest, prefer-stable]
exclude:
- laravel: 11.*
php: 8.1

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"require": {
"php": "^8.1",
"edamov/pushok": "^0.16",
"illuminate/cache": "^9.0|^10.0",
"illuminate/config": "^9.0|^10.0",
"illuminate/events": "^9.0|^10.0",
"illuminate/notifications": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"nesbot/carbon": "^2.66"
"illuminate/cache": "^9.0|^10.0|^11.0",
"illuminate/config": "^9.0|^10.0|^11.0",
"illuminate/events": "^9.0|^10.0|^11.0",
"illuminate/notifications": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.66|^3.0"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
Expand Down

0 comments on commit 7db94af

Please sign in to comment.