Skip to content

Commit

Permalink
Merge pull request #71 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
riasvdv authored Feb 16, 2023
2 parents a1cb33e + d9f9107 commit d89aadc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,25 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.0]
laravel: [9.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
php: [8.2, 8.1, 8.0]
laravel: [9.*, 8.*, 10.*]
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
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
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/contracts": "^8.71|^9.0",
"illuminate/filesystem": "^8.71|^9.0",
"illuminate/support": "^8.71|^9.0",
"illuminate/contracts": "^8.71|^9.0|^10.0",
"illuminate/filesystem": "^8.71|^9.0|^10.0",
"illuminate/support": "^8.71|^9.0|^10.0",
"league/commonmark": "^1.0|^2.0",
"spatie/yaml-front-matter": "^2.0",
"symfony/yaml": "^4.0|^5.0|^6.0"
},
"require-dev": {
"league/flysystem": "^1.0.8|^3.0",
"orchestra/testbench": "^6.23|^7.0",
"orchestra/testbench": "^6.23|^7.0|^8.0",
"phpunit/phpunit": "^9.4"
},
"config": {
Expand Down

0 comments on commit d89aadc

Please sign in to comment.