Skip to content

Commit

Permalink
Merge pull request #2 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
freekmurze authored Feb 2, 2023
2 parents 886c4e1 + 3e9461e commit 7fe5da3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,25 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0]
laravel: [9.*, 8.*]
stability: [prefer-lowest, prefer-stable]
php: [8.0, 8.1, 8.2]
laravel: [9.*, 8.*, 10.*]
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: ^6.23
exclude:
- laravel: 10.*
php: 8.0

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

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.4.3",
"illuminate/contracts": "^8.38|^9.0"
"illuminate/contracts": "^8.38|^9.0|^10.0"
},
"require-dev": {
"nunomaduro/collision": "^5.3|^6.0",
"orchestra/testbench": "^6.23|^7.0",
"orchestra/testbench": "^6.23|^7.0|^8.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.28"
},
Expand All @@ -49,7 +49,7 @@
"extra": {
"laravel": {
"providers": [
"Spatie\\InteractsWithPayload\\InteractsWithPayloadServiceProvider"
"Spatie\\InteractsWithPayload\\InteractsWithPayloadServiceProvider"
],
"aliases": {
"AllJobs": "Spatie\\InteractsWithPayload\\Facades\\AllJobs"
Expand Down

0 comments on commit 7fe5da3

Please sign in to comment.