-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
60 lines (60 loc) · 1.34 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
56
57
58
59
60
{
"name": "juanparati/brevosuite",
"description": "Complete Brevo integration with Laravel",
"type": "library",
"keywords": [
"brevo",
"getbrevo",
"sendinblue",
"php",
"laravel",
"mail",
"email",
"sms"
],
"require": {
"php": ">=8.2",
"laravel/framework": "^11.0.0",
"illuminate/mail": "^11.0.0",
"getbrevo/brevo-php": "~v1.0.2",
"symfony/brevo-mailer": "~7.0.3",
"symfony/http-client": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0.7",
"orchestra/testbench": "^8.21|^9.0"
},
"autoload": {
"psr-4": {
"Juanparati\\BrevoSuite\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Juanparati\\BrevoSuite\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Juanparati\\BrevoSuite\\Providers\\BrevoSuiteProvider"
]
}
},
"license": "MIT",
"authors": [
{
"name": "Juan Lago",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"lint": [
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor/bin/phpunit"
]
}
}