Skip to content

Commit

Permalink
Merge pull request #103 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
christophrumpel authored Mar 25, 2024
2 parents 717e024 + a955cc2 commit 4fe5633
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: test

on: [push]
on:
- push

jobs:
test:
Expand All @@ -10,12 +11,17 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.1]
laravel: [10.*]
php: [8.1, '8.2']
laravel: ['10.*', '11.*']
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 8.1

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
],
"require": {
"php": "^8.1",
"abraham/twitteroauth": "^5.0",
"illuminate/notifications": "^10.0",
"illuminate/support": "^10.0",
"abraham/twitteroauth": "^5.0|^7.0",
"illuminate/notifications": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"kylewm/brevity": "^0.2.9",
"ext-fileinfo": "*"
},
"require-dev": {
"laravel/pint": "^1.10",
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.3"
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^9.3|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 4fe5633

Please sign in to comment.