mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Embed images in emails
This commit is contained in:
parent
b293d00699
commit
601c129bbf
|
@ -12,6 +12,7 @@
|
||||||
"doctrine/dbal": "^2.5.13",
|
"doctrine/dbal": "^2.5.13",
|
||||||
"doctrine/inflector": "1.1.*",
|
"doctrine/inflector": "1.1.*",
|
||||||
"doctrine/instantiator": "1.0.*",
|
"doctrine/instantiator": "1.0.*",
|
||||||
|
"eduardokum/laravel-mail-auto-embed": "^1.0",
|
||||||
"erusev/parsedown": "^1.6",
|
"erusev/parsedown": "^1.6",
|
||||||
"fideloper/proxy": "^3.3",
|
"fideloper/proxy": "^3.3",
|
||||||
"intervention/image": "^2.3",
|
"intervention/image": "^2.3",
|
||||||
|
|
57
composer.lock
generated
57
composer.lock
generated
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "b575236d6ef1d5f8799acf86ca03bc4e",
|
"content-hash": "f44697f67c1de6fd46cb9a7cb8bc20a6",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "barryvdh/laravel-debugbar",
|
"name": "barryvdh/laravel-debugbar",
|
||||||
|
@ -729,6 +729,61 @@
|
||||||
],
|
],
|
||||||
"time": "2014-09-09T13:34:57+00:00"
|
"time": "2014-09-09T13:34:57+00:00"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "eduardokum/laravel-mail-auto-embed",
|
||||||
|
"version": "1.0.4",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/eduardokum/laravel-mail-auto-embed.git",
|
||||||
|
"reference": "918c3aff220d965fbaee96ae4d48a09036381bdf"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/eduardokum/laravel-mail-auto-embed/zipball/918c3aff220d965fbaee96ae4d48a09036381bdf",
|
||||||
|
"reference": "918c3aff220d965fbaee96ae4d48a09036381bdf",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"illuminate/contracts": ">=5.3",
|
||||||
|
"illuminate/mail": ">=5.3",
|
||||||
|
"illuminate/support": ">=5.3",
|
||||||
|
"php": ">=5.5.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"orchestra/testbench": "~3.0",
|
||||||
|
"phpunit/phpunit": "~5.0|~6.0"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"laravel": {
|
||||||
|
"providers": [
|
||||||
|
"Eduardokum\\LaravelMailAutoEmbed\\ServiceProvider"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Eduardokum\\LaravelMailAutoEmbed\\": "src"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Eduardo Gusmão",
|
||||||
|
"email": "eduguscontra3@hotmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Library for embed images in emails automatically",
|
||||||
|
"homepage": "https://github.com/eduardokum/laravel-mail-auto-embed",
|
||||||
|
"keywords": [
|
||||||
|
"eduardokum",
|
||||||
|
"laravel-mail-auto-embed"
|
||||||
|
],
|
||||||
|
"time": "2017-09-21T12:11:32+00:00"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "erusev/parsedown",
|
"name": "erusev/parsedown",
|
||||||
"version": "1.7.1",
|
"version": "1.7.1",
|
||||||
|
|
|
@ -297,6 +297,7 @@ return [
|
||||||
Unicodeveloper\DumbPassword\DumbPasswordServiceProvider::class,
|
Unicodeveloper\DumbPassword\DumbPasswordServiceProvider::class,
|
||||||
Schuppo\PasswordStrength\PasswordStrengthServiceProvider::class,
|
Schuppo\PasswordStrength\PasswordStrengthServiceProvider::class,
|
||||||
Tightenco\Ziggy\ZiggyServiceProvider::class, // Laravel routes in vue
|
Tightenco\Ziggy\ZiggyServiceProvider::class, // Laravel routes in vue
|
||||||
|
Eduardokum\LaravelMailAutoEmbed\ServiceProvider::class,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Application Service Providers...
|
* Application Service Providers...
|
||||||
|
|
Loading…
Reference in a new issue