-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
87 lines (80 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "websharks/comment-mail-pro",
"homepage": "https://github.com/websharks/comment-mail-pro",
"description": "A WordPress plugin enabling email subscriptions for comments.",
"keywords": ["websharks", "wp sharks", "comment mail"],
"type": "library",
"license": "GPL-3.0+",
"authors": [{
"name": "websharks",
"homepage": "http://websharks-inc.com/",
"role": "company"
}, {
"name": "jaswsinc",
"homepage": "http://jaswsinc.com/",
"role": "developer"
}, {
"name": "raamdev",
"homepage": "https://raamdev.com/",
"role": "developer"
}, {
"name": "kristineds",
"homepage": "http://www.strivingcoder.com/",
"role": "developer"
}, {
"name": "reedyseth",
"homepage": "http://behstant.com/blog/",
"role": "developer"
}],
"support": {
"source": "https://github.com/websharks/comment-mail-pro",
"issues": "https://github.com/websharks/comment-mail/issues"
},
"require": {
"php": ">=5.4",
"websharks/wp-php-rv": "160824.6416",
"websharks/sharkicons": "160209",
"erusev/parsedown": "1.6.0",
"erusev/parsedown-extra": "0.7.0",
"mailchimp/mailchimp": "2.0.6",
"lusitanian/oauth": "0.8.7",
"package/datetimepicker": "2.4.5"
},
"require-dev": {
"package/bourbon": "4.2.3",
"websharks/wp-i18n-tools": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"WebSharks\\CommentMail\\Pro\\": "src/includes/classes"
},
"files": ["src/includes/functions/_load.php"]
},
"config": {
"vendor-dir": "src/vendor",
"preferred-install": "dist"
},
"repositories": [{
"type": "package",
"package": {
"name": "package/datetimepicker",
"version": "2.4.5",
"dist": {
"url": "https://github.com/xdan/datetimepicker/archive/2.4.5.zip",
"type": "zip"
}
}
}, {
"type": "package",
"package": {
"name": "package/bourbon",
"version": "4.2.3",
"dist": {
"url": "https://github.com/thoughtbot/bourbon/releases/download/v4.2.3/bourbon-v4.2.3.zip",
"type": "zip"
}
}
}]
}