Skip to content

Commit df4b654

Browse files
authored
Merge pull request #78 from resend/chore-laravel-12
chore: Laravel 12 compatibility
2 parents 3bcdeb9 + 8e899d2 commit df4b654

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
php: [8.1, 8.2, 8.3, 8.4]
19-
laravel: [10, 11]
19+
laravel: [10, 11, 12]
2020
exclude:
2121
- php: 8.4
2222
laravel: 10
2323
- php: 8.1
2424
laravel: 11
25+
- php: 8.1
26+
laravel: 12
2527

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

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
],
1313
"require": {
1414
"php": "^8.1",
15-
"illuminate/http": "^10.0|^11.0",
16-
"illuminate/support": "^10.0|^11.0",
15+
"illuminate/http": "^10.0|^11.0|^12.0",
16+
"illuminate/support": "^10.0|^11.0|^12.0",
1717
"resend/resend-php": "^0.15.0",
1818
"symfony/mailer": "^6.2|^7.0"
1919
},
2020
"require-dev": {
2121
"friendsofphp/php-cs-fixer": "^3.14",
2222
"mockery/mockery": "^1.5",
23-
"orchestra/testbench": "^8.17|^9.0",
24-
"pestphp/pest": "^2.0"
23+
"orchestra/testbench": "^8.17|^9.0|^10.0",
24+
"pestphp/pest": "^2.0|^3.7"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)