generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
76 lines (76 loc) · 2.31 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
{
"name": "dansmaculotte/laravel-mail-template",
"description": "A mail template driver to send emails with",
"keywords": [
"mail",
"template",
"laravel"
],
"homepage": "https://github.com/dansmaculotte/laravel-mail-template",
"license": "MIT",
"authors": [
{
"name": "Gaël Reyrol",
"email": "[email protected]"
},
{
"name": "Martin Potel",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/notifications": "^9.0",
"illuminate/support": "^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.7",
"kriswallsmith/buzz": "^1.0",
"larapack/dd": "^1.1",
"mailgun/mailgun-php": "^3.5",
"mailjet/mailjet-apiv3-php": "^1.4",
"mailchimp/transactional": "^1.0",
"mockery/mockery": "^1.3",
"nyholm/psr7": "^1.1",
"orchestra/testbench": "^7.1",
"phpunit/phpunit": "^9.1",
"sendgrid/sendgrid": "^7.3",
"sendinblue/api-v3-sdk": "^8.1.0"
},
"autoload": {
"psr-4": {
"DansMaCulotte\\MailTemplate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DansMaCulotte\\MailTemplate\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"coverage": "@php vendor/bin/phpunit --coverage-html coverage",
"format": "@php vendor/bin/php-cs-fixer fix --config .php_cs.php"
},
"suggest": {
"mailgun/mailgun-php": "Required for sending emails via Mailgun",
"mailjet/mailjet-apiv3-php": "Required for sending emails via Mailjet",
"mailchimp/transactional": "Required for sending emails via Mandrill (Mailchimp)",
"sendgrid/sendgrid": "Required for sending emails via Sendgrid",
"sendinblue/api-v3-sdk": "Required for send emails via Sendinblue"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DansMaCulotte\\MailTemplate\\MailTemplateServiceProvider"
],
"aliases": {
"MailTemplate": "DansMaCulotte\\MailTemplate\\MailTemplateFacade"
}
}
}
}