-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
44 lines (44 loc) · 1.06 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
{
"name": "vemcogroup/laravel-sparkpost-driver",
"description": "SparkPost driver to use with Laravel 6.x|7.x|8.x|9.x|10.x",
"keywords": [
"mail",
"laravel",
"sparkpost"
],
"homepage": "https://github.com/vemcogroup/laravel-sparkpost-driver",
"license": "MIT",
"authors": [
{
"name": "vemDevs",
"homepage": "https://vemcogroup.com"
}
],
"require": {
"php": "^8.0.2",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.0|^10.0|^11.0",
"symfony/mailer": "^6.0|^7.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Vemcogroup\\SparkPostDriver\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Vemcogroup\\SparkPostDriver\\SparkPostDriverServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}