Skip to content

Commit

Permalink
Merge pull request #5 from nicko170/laravel-9-support
Browse files Browse the repository at this point in the history
Adding laravel 9 support
  • Loading branch information
nicko170 authored Jan 18, 2023
2 parents 6e10b23 + 129d12e commit 0c5c79d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0]
php: [7.4, 8.0, 8.1, 8.2]

name: Tests on PHP ${{ matrix.php }} - ${{ matrix.stability }}

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
{
"name": "Nick Pratley",
"email": "[email protected]",
"homepage": "https://devlan.io/",
"homepage": "https://npratley.net/",
"role": "Developer"
}
],
"require": {
"php": ">=7.4 | ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"illuminate/notifications": "~6.0 || ~7.0 || ~8.0",
"illuminate/support": "~6.0 || ~7.0 || ~8.0"
"php": ">=7.4 || ^8.0 || ^8.1 || ^8.2",
"guzzlehttp/guzzle": "~6.0 || ~7.0",
"illuminate/notifications": "~6.0 || ~7.0 || ~8.0 || ~9.0",
"illuminate/support": "~6.0 || ~7.0 || ~8.0 || ~9.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
Expand Down

0 comments on commit 0c5c79d

Please sign in to comment.