Skip to content

Commit

Permalink
Merge pull request #93 from njoguamos/Add-Laravel-10.x-Compactibility
Browse files Browse the repository at this point in the history
Add Laravel 10.x Compatibility
  • Loading branch information
freekmurze authored Jan 24, 2023
2 parents 3283f6b + 283be98 commit 70d84f0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,24 @@ jobs:
fail-fast: true
matrix:
php: [8.2, 8.1, 8.0]
laravel: [8.*, 9.*]
laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
exclude:
- laravel: 10.*
php: 8.0

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

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 @@ -35,11 +35,11 @@
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.0|^9.0"
"laravel/framework": "^8.0|^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.23|^7.0",
"orchestra/testbench": "^6.23|^7.0|^8.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3"
},
Expand Down Expand Up @@ -72,4 +72,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 70d84f0

Please sign in to comment.