Skip to content

Commit 518aae4

Browse files
authored
Merge pull request #38 from arkaitzgarro/patch-1
chore: Laravel 11 compatibility
2 parents 0932672 + 2e167d1 commit 518aae4

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/run-tests.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.1]
13-
laravel: [10.*]
12+
php: [8.1, 8.2]
13+
laravel: [10.*, 11.*]
1414
dependency-version: [prefer-stable]
1515
include:
1616
- laravel: 10.*
1717
testbench: 8.*
18+
- laravel: 11.*
19+
testbench: 9.*
20+
exclude:
21+
- laravel: 11.*
22+
php: 8.1
1823

1924
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2025

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"php": "^7.2|^8.0",
2222
"ext-openssl": "*",
2323
"guzzlehttp/guzzle": "^7.4",
24-
"illuminate/console": "^7.0|^8.0|^9.0|^10.0",
25-
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0",
26-
"illuminate/support": "^7.0|^8.0|^9.0|^10.0"
24+
"illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0",
25+
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0|^11.0",
26+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0"
2727
},
2828
"require-dev": {
2929
"friendsofphp/php-cs-fixer": "^3.0",
30-
"orchestra/testbench": "^7.0",
30+
"orchestra/testbench": "^7.0|^8.0|^9.0",
3131
"phpunit/phpunit": "^9.0"
3232
},
3333
"autoload": {

0 commit comments

Comments
 (0)