-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 lines (55 loc) · 1.4 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "resend/resend-laravel",
"description": "Resend for Laravel",
"keywords": ["php", "resend", "laravel", "sdk", "api", "client"],
"homepage": "https://resend.com/",
"license": "MIT",
"authors": [
{
"name": "Resend and contributors",
"homepage": "https://github.com/resend/resend-laravel/contributors"
}
],
"require": {
"php": "^8.1",
"illuminate/http": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"resend/resend-php": "^0.15.0",
"symfony/mailer": "^6.2|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8.17|^9.0",
"pestphp/pest": "^2.0"
},
"autoload": {
"psr-4": {
"Resend\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Resend\\Laravel\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"laravel": {
"providers": [
"Resend\\Laravel\\ResendServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}