forked from eduardokum/laravel-mail-auto-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·48 lines (48 loc) · 1.38 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
{
"name": "eduardokum/laravel-mail-auto-embed",
"description": "Library for embed images in emails automatically",
"keywords": [
"eduardokum",
"laravel-mail-auto-embed"
],
"homepage": "https://github.com/eduardokum/laravel-mail-auto-embed",
"license": "MIT",
"authors": [
{
"name": "Eduardo Gusmão",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-dom": "*",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"illuminate/mail": "^6.0|^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.5",
"masterminds/html5": "^2.7",
"ext-curl": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Eduardokum\\LaravelMailAutoEmbed\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eduardokum\\LaravelMailAutoEmbed\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Eduardokum\\LaravelMailAutoEmbed\\ServiceProvider"
]
}
}
}