forked from salamwaddah/laravel-mandrill-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.29 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": "devkea/laravel-mandrill-driver",
"description": "Mandrill notification channel for Laravel 5, 6, 7, 8, 9",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"laravel 5",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9",
"laravel 10",
"mandrill",
"mailchimp",
"notifications",
"channel"
],
"support": {
"issues": "https://github.com/devkea/laravel-mandrill-driver/issues",
"source": "https://github.com/devkea/laravel-mandrill-driver"
},
"authors": [
{
"name": "Evgeniy Kuznetsov",
"email": "[email protected]",
"homepage": "https://devkea.ru/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Devkea\\Mandrill\\": "src/"
}
},
"require": {
"php": ">=7.0.0",
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"hellochef-me/php-styles": "^1.0",
"illuminate/notifications": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"minimum-stability": "stable",
"scripts": {
"post-update-cmd": [
"cp vendor/hellochef-me/php-styles/pre-commit .git/hooks/pre-commit",
"chmod a+x .git/hooks/pre-commit"
],
"post-install-cmd": [
"cp vendor/hellochef-me/php-styles/pre-commit .git/hooks/pre-commit",
"chmod a+x .git/hooks/pre-commit"
]
},
"version": "1.3"
}