forked from nikhilathawale/connector-send-email
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·50 lines (50 loc) · 1.19 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
{
"name": "processmaker/connector-send-email",
"description": "ProcessMaker BPM Connectors that provide Email service",
"version": "1.1.9",
"type": "library",
"authors": [
{
"name": "ProcessMaker 4 Development Team",
"email": "support@processmaker.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ProcessMaker/laravel-chunk-upload"
},
{
"type": "vcs",
"url": "https://github.com/ProcessMaker/processmaker"
},
{
"type": "vcs",
"url": "https://github.com/fedeisas/laravel-mail-css-inliner"
}
],
"require": {
"mustache/mustache": "^2.12.0",
"fedeisas/laravel-mail-css-inliner": "^2.3"
},
"require-dev": {
"processmaker/processmaker": "4.0.*"
},
"autoload": {
"psr-4": {
"ProcessMaker\\Packages\\Connectors\\Email\\": "src/",
"ProcessMaker\\ScriptRunners\\": "tests/ScriptRunners/"
}
},
"extra": {
"laravel": {
"providers": [
"ProcessMaker\\Packages\\Connectors\\Email\\PluginServiceProvider",
"Fedeisas\\LaravelMailCssInliner\\LaravelMailCssInlinerServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": []
}
}