Skip to content

Commit 7907f4a

Browse files
authored
feat: Add support for Laravel 11 (#56)
1 parent 8be21f2 commit 7907f4a

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
php: [8.1, 8.2, 8.3]
19-
laravel: [9, 10]
19+
laravel: [10, 11]
2020
exclude:
21-
- php: 8.3
22-
laravel: 9
21+
- php: 8.1
22+
laravel: 11
2323

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

@@ -51,4 +51,4 @@ jobs:
5151
composer update --no-interaction --prefer-dist --no-progress
5252
5353
- name: Execute tests
54-
run: vendor/bin/pest --verbose
54+
run: vendor/bin/pest

composer.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
],
1313
"require": {
1414
"php": "^8.1",
15-
"illuminate/support": "^9.21|^10.0",
15+
"illuminate/http": "^10.0|^11.0",
16+
"illuminate/support": "^10.0|^11.0",
1617
"resend/resend-php": "^0.12.0",
17-
"symfony/mailer": "^6.2"
18+
"symfony/mailer": "^6.2|^7.0"
1819
},
1920
"require-dev": {
2021
"friendsofphp/php-cs-fixer": "^3.14",
2122
"mockery/mockery": "^1.5",
22-
"orchestra/testbench": "^7.22|^8.0",
23-
"pestphp/pest": "^1.22"
23+
"orchestra/testbench": "^8.17|^9.0",
24+
"pestphp/pest": "^2.0"
2425
},
2526
"autoload": {
2627
"psr-4": {

0 commit comments

Comments
 (0)