Skip to content

Commit ffaf4de

Browse files
committed
laravel 11
1 parent 519a983 commit ffaf4de

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,25 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
php: ['8.0', '8.1', '8.2']
14-
laravel: [9.*, 10.*]
13+
php: ['8.0', '8.1', '8.2', '8.3']
14+
laravel: [9.*, 10.*, 11.*]
1515
stability: [prefer-lowest, prefer-stable]
1616
include:
1717
- laravel: 9.*
1818
testbench: 7.*
1919
- laravel: 10.*
2020
testbench: 8.*
21+
- laravel: 11.*
22+
testbench: 9.*
2123
exclude:
24+
- laravel: 9.*
25+
php: 8.3
2226
- laravel: 10.*
2327
php: 8.0
28+
- laravel: 11.*
29+
php: 8.0
30+
- laravel: 11.*
31+
php: 8.1
2432

2533
steps:
2634
- name: Checkout code
@@ -31,7 +39,7 @@ jobs:
3139
with:
3240
php-version: ${{ matrix.php }}
3341
extensions: bcmath, ctype, dom, fileinfo, intl, gd, json, mbstring, pdo, pdo_sqlite, openssl, sqlite, xml, zip
34-
coverage: none
42+
coverage: xdebug
3543

3644
- name: Install dependencies
3745
run: |

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"php": "^8.0",
2424
"ext-json": "*",
2525
"balping/json-raw-encoder": "^1.0",
26-
"illuminate/support": "^9.0|^10.0"
26+
"illuminate/support": "^9.0|^10.0|^11.0"
2727
},
2828
"require-dev": {
2929
"mockery/mockery": "^1.5",
30-
"phpunit/phpunit": "^9.5|^10.0",
31-
"orchestra/testbench": "^7.4|^8.0"
30+
"phpunit/phpunit": "^9.5|^10.0|^11.0",
31+
"orchestra/testbench": "^7.4|^8.0|^9.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)