-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
80 lines (80 loc) · 2.11 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "yieldstudio/laravel-brevo-notifier",
"description": "Easily send Brevo transactional email and sms with Laravel notifier.",
"type": "plugin",
"keywords": [
"yieldstudio",
"laravel",
"notifier",
"notification",
"brevo",
"email",
"sms"
],
"homepage": "https://github.com/YieldStudio/laravel-brevo-notifier",
"license": "MIT",
"authors": [
{
"name": "James Hemery",
"email": "[email protected]",
"homepage": "https://yieldstudio.fr",
"role": "Developer"
},
{
"name": "David Tang",
"email": "[email protected]",
"homepage": "https://yieldstudio.fr",
"role": "Developer"
},
{
"name": "Arthur Monney",
"email": "[email protected]",
"homepage": "https://yieldstudio.fr",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/database": "^9|^10|^11",
"illuminate/support": "^9|^10|^11"
},
"require-dev": {
"ciareis/bypass": "^1.0",
"laravel/pint": "^1.16",
"orchestra/testbench": "^7.22|^8.1",
"pestphp/pest": "^2.34",
"phpunit/phpunit": "^9.5|^10.5"
},
"autoload": {
"psr-4": {
"YieldStudio\\LaravelBrevoNotifier\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"YieldStudio\\LaravelBrevoNotifier\\Tests\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/pint",
"test": "vendor/bin/pest",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"extra": {
"laravel": {
"providers": [
"YieldStudio\\LaravelBrevoNotifier\\BrevoNotifierServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}