Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from datalogix/feat-support-laravel-9
Browse files Browse the repository at this point in the history
Support Laravel 9
  • Loading branch information
ricardogobbosouza authored Jan 24, 2022
2 parents 8e0ceb4 + 223a876 commit b0ec7b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [7.3, 7.4, 8.0]
laravel: [^7.0, ^8.0]
stability: [prefer-lowest, prefer-stable]
php: [7.3, 7.4, 8.0, 8.1]
laravel: [^7.0, ^8.0, ^9.0]
#stability: [prefer-lowest, prefer-stable]
stability: [prefer-stable]
exclude:
- php: 7.3
laravel: 9
- php: 7.4
laravel: 9

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^7.0|^8.0"
"illuminate/support": "^7.0|^8.0|^9.0"
},
"require-dev": {
"graham-campbell/testbench": "^5.6",
"illuminate/database": "^7.0|^8.0",
"graham-campbell/testbench": "^5.7",
"illuminate/database": "^7.0|^8.0|^9.0",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^8.5|^9.5",
"spatie/phpunit-watcher": "^1.0"
Expand Down

0 comments on commit b0ec7b6

Please sign in to comment.