Skip to content

Commit

Permalink
Merge pull request #12 from MedeirosDev/feature/issue-11-add-support-…
Browse files Browse the repository at this point in the history
…for-laravel-9

issue-11  upgraded dependencies to add support for laravel 9.x
  • Loading branch information
abbasali authored Mar 9, 2022
2 parents c86d608 + 1eec55d commit f220502
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ jobs:
fail-fast: true
matrix:
php: [7.2, 7.4, 8.0]
laravel: [^6.0, ^7.0, ^8.0]
laravel: [^6.0, ^7.0, ^8.0, ^9.0]
exclude:
# Exclude laravel 8 on php 7.2 as it requires php 7.3+
- php: 7.2
laravel: ^8.0
# Exclude laravel 9 on php 7.2, 7.3 and 7.4 as it requires php 8.0+
- php: 7.2
laravel: ^9.0
- php: 7.4
laravel: ^9.0

name: Run Test (P${{ matrix.php }} - L${{ matrix.laravel }})

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"type": "library",
"require": {
"php": "^7.2|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0"
"illuminate/database": "^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
Expand Down

0 comments on commit f220502

Please sign in to comment.