-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 895 Bytes
/
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
{
"name": "gentor/mautic-api-laravel",
"description": "Wrapper on the Mautic API for Laravel 4/5.x",
"keywords": [
"laravel",
"mautic",
"api",
"automation",
"email",
"marketing"
],
"license": "MIT",
"authors": [
{
"name": "Evgeni Nurkov",
"email": "[email protected]"
}
],
"require": {
"php": ">= 5.6",
"illuminate/support": "4.2.*|5.*",
"mautic/api-library": "^2.6"
},
"autoload": {
"psr-4": {
"Gentor\\Mautic\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Gentor\\Mautic\\MauticServiceProvider"
],
"aliases": {
"Mautic": "Gentor\\Mautic\\Facades\\Mautic"
}
}
},
"minimum-stability": "dev"
}