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

Commit

Permalink
Merge pull request #82 from ramonrietdijk/master
Browse files Browse the repository at this point in the history
Added support for Laravel 9
  • Loading branch information
ahinkle committed Feb 15, 2022
2 parents 8ab4838 + 2f5695f commit 8a1bcc9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0]
laravel: [^7.0, ^8.0]
php: [7.3, 7.4, 8.0, 8.1]
laravel: [^7.0, ^8.0, ^9.0]

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

Expand All @@ -42,4 +42,4 @@ jobs:
run: composer require "illuminate/contracts=${{ matrix.laravel }}" --prefer-dist --no-interaction

- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit --verbose
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.3|^8.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"illuminate/support": "^7.0|^8.0"
"illuminate/support": "^7.0|^8.0|^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"orchestra/testbench": "^5.0|^6.0",
"friendsofphp/php-cs-fixer": "^2.16|^3.0",
"orchestra/testbench": "^5.0|^6.0|^7.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
Expand Down

0 comments on commit 8a1bcc9

Please sign in to comment.