-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
42 lines (42 loc) · 997 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
41
42
{
"name": "mailjet/joomla-mailjet-plugin-apiv3",
"type": "library",
"description": "Description",
"license": "GPL",
"keywords": ["joomla", "plugin", "mailjet"],
"authors": [
{
"name": "Mailjet",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:mailjet/mailjet-apiv3-php.git"
}
],
"require": {
"php": ">=7.4",
"composer/installers": "~1.0",
"mailjet/mailjet-apiv3-php": "^1.6"
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"clearComposerCache": [
"rm -rf ~/.composer/cache*"
],
"post-install-cmd": [
"@clearComposerCache"
],
"post-update-cmd": [
"@clearComposerCache"
]
}
}