Skip to content

Commit

Permalink
Laravel 10.x Support (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikn69 authored Jan 12, 2023
1 parent 59beb0d commit 50934f5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,18 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0]
laravel: [9.*, 8.*]
laravel: [10.*, 9.*, 8.*]
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
exclude:
- laravel: 6.*
php: 8.2
- laravel: 6.*
php: 8.1
- laravel: 7.*
php: 8.2
- laravel: 7.*
php: 8.1
- laravel: 9.*
php: 7.4
- laravel: 9.*
php: 7.3
- laravel: 10.*
php: 8.0

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

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
}
],
"require": {
"php": "^8.0|^8.1",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
"php": "^8.0",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"pestphp/pest": "^1.22"
},
"autoload": {
Expand Down Expand Up @@ -62,4 +62,4 @@
"pestphp/pest-plugin": true
}
}
}
}

0 comments on commit 50934f5

Please sign in to comment.