Skip to content

Commit c78a042

Browse files
Laravel 13.x Compatibility (#107)
1 parent a27b2f6 commit c78a042

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
php: [8.1, 8.2, 8.3, 8.4, 8.5]
22-
laravel: [10, 11, 12]
22+
laravel: [10, 11, 12, 13]
2323
exclude:
2424
- php: 8.5
2525
laravel: 11
@@ -31,6 +31,10 @@ jobs:
3131
laravel: 11
3232
- php: 8.1
3333
laravel: 12
34+
- laravel: '13'
35+
php: 8.1
36+
- laravel: '13'
37+
php: 8.2
3438

3539
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
3640

composer.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
{
22
"name": "resend/resend-laravel",
33
"description": "Resend for Laravel",
4-
"keywords": ["php", "resend", "laravel", "sdk", "api", "client"],
4+
"keywords": [
5+
"php",
6+
"resend",
7+
"laravel",
8+
"sdk",
9+
"api",
10+
"client"
11+
],
512
"homepage": "https://resend.com/",
613
"license": "MIT",
714
"authors": [
@@ -12,15 +19,15 @@
1219
],
1320
"require": {
1421
"php": "^8.1",
15-
"illuminate/http": "^10.0|^11.0|^12.0",
16-
"illuminate/support": "^10.0|^11.0|^12.0",
22+
"illuminate/http": "^10.0|^11.0|^12.0|^13.0",
23+
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
1724
"resend/resend-php": "^1.0.0",
1825
"symfony/mailer": "^6.2|^7.0"
1926
},
2027
"require-dev": {
2128
"friendsofphp/php-cs-fixer": "^3.14",
2229
"mockery/mockery": "^1.5",
23-
"orchestra/testbench": "^8.17|^9.0|^10.8",
30+
"orchestra/testbench": "^8.17|^9.0|^10.8|^11.0",
2431
"pestphp/pest": "^1.0|^2.0|^3.7|^4.0"
2532
},
2633
"autoload": {

0 commit comments

Comments
 (0)