-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
69 lines (69 loc) · 2.07 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
{
"name": "mailjet/wp-mailjet-plugin",
"type": "wordpress-plugin",
"description": "Description",
"license": "GPL",
"keywords": ["wordpress", "plugin", "mailjet"],
"authors": [
{
"name": "Mailjet",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:mailjet/mailjet-apiv3-php.git"
},
{
"type": "vcs",
"url": "[email protected]:jbroadway/analog.git"
},
{
"type": "vcs",
"url": "[email protected]:raulferras/PHP-po-parser.git"
}
],
"require": {
"php": ">=7.4",
"composer/installers": "^2.1.1",
"mailjet/mailjet-apiv3-php": "^v1.5.6",
"sepia/po-parser": "^5.1.7",
"analog/analog": "^1.0.13-stable"
},
"autoload": {
"psr-4": {
"MailjetWp\\MailjetPlugin\\": "src/",
"MailjetWp\\MailjetPlugin\\Includes\\": "src/includes/",
"MailjetWp\\MailjetPlugin\\Includes\\SettingsPages\\": "src/includes/SettingsPages/",
"MailjetWp\\MailjetPlugin\\Admin\\": "src/admin/",
"MailjetWp\\MailjetPlugin\\Admin\\Partials\\": "src/admin/partials/",
"MailjetWp\\MailjetPlugin\\Front\\": "src/front/",
"MailjetWp\\MailjetPlugin\\Widget\\": "src/widget/",
"MailjetWp\\MailjetPlugin\\WidgetFormBuilder\\": "src/widgetformbuilder/",
"MailjetWp\\MailjetIframe\\": "src/mailjetIframe"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"clearComposerCache": [
"rm -rf ~/.composer/cache*"
],
"post-install-cmd": [
"@clearComposerCache"
],
"post-update-cmd": [
"@clearComposerCache"
]
},
"require-dev": {
"bamarni/composer-bin-plugin": "dev-master"
}
}