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

Commit 8a1bcc9

Browse files
authored
Merge pull request #82 from ramonrietdijk/master
Added support for Laravel 9
2 parents 8ab4838 + 2f5695f commit 8a1bcc9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [7.3, 7.4, 8.0]
20-
laravel: [^7.0, ^8.0]
19+
php: [7.3, 7.4, 8.0, 8.1]
20+
laravel: [^7.0, ^8.0, ^9.0]
2121

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

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

4444
- name: Execute tests
45-
run: vendor/bin/phpunit --verbose
45+
run: vendor/bin/phpunit --verbose

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
"require": {
1919
"php": "^7.3|^8.0",
2020
"guzzlehttp/guzzle": "^6.0|^7.0",
21-
"illuminate/support": "^7.0|^8.0"
21+
"illuminate/support": "^7.0|^8.0|^9.0"
2222
},
2323
"require-dev": {
24-
"friendsofphp/php-cs-fixer": "^2.16",
25-
"orchestra/testbench": "^5.0|^6.0",
24+
"friendsofphp/php-cs-fixer": "^2.16|^3.0",
25+
"orchestra/testbench": "^5.0|^6.0|^7.0",
2626
"phpunit/phpunit": "^9.0"
2727
},
2828
"autoload": {

0 commit comments

Comments
 (0)