-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
57 lines (57 loc) · 1.22 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
{
"name": "liliom/laravel-zoho-campaigns",
"description": " A library to integrate with Zoho Campaigns v1.0 API. Build and manage campaigns & contact lists.",
"keywords": [
"laravel",
"zoho",
"campaigns",
"zoho campaigns",
"newsletter",
"contacts",
"subscribers",
"subscriptions",
"subscribe form",
"signup forms",
"api"
],
"require": {
"php": "^7.1.3",
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"laravel/framework": ">=5.3",
"guzzlehttp/guzzle": "^6.2"
},
"license": "MIT",
"support": {
"issues": "https://github.com/liliomlab/laravel-zoho-campaigns/issues",
"source": "https://github.com/liliomlab/laravel-zoho-campaigns"
},
"authors": [
{
"name": "Mohammad Kawsara",
"email": "mkwsra@gmail.com"
}
],
"autoload": {
"psr-4": {
"Liliom\\Zoho\\Campaigns\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Liliom\\Zoho\\Campaigns\\CampaignsServiceProvider"
],
"aliases": {
"Campaigns": "Liliom\\Zoho\\Campaigns\\CampaignsFacade"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}