Skip to content

Commit

Permalink
Merge pull request #22 from Mane-Olawale/support-laravel-10.x
Browse files Browse the repository at this point in the history
chore: add support for laravel 10.x
  • Loading branch information
Mane-Olawale authored Nov 19, 2023
2 parents 2890563 + 89e1099 commit df73e27
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.3, 7.4, '8.0', 8.1]
laravel: [6, 7, 8, 9]
php: [7.3, 7.4, 8.0, 8.1, 8.2]
laravel: [6, 7, 8, 9, 10]
exclude:
- php: 7.3
laravel: 10
- php: 7.4
laravel: 10
- php: 8.0
laravel: 10
- php: 7.3
laravel: 9
- php: 7.4
Expand All @@ -22,6 +28,10 @@ jobs:
laravel: 6
- php: 8.1
laravel: 7
- php: 8.2
laravel: 6
- php: 8.2
laravel: 7

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"require": {
"php": "^7.2|^8.0",
"mane-olawale/termii": "^1.2",
"illuminate/notifications": "^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
"illuminate/notifications": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "~8.0|~9.0",
"mockery/mockery": "~1.4"
},
Expand Down

0 comments on commit df73e27

Please sign in to comment.