-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
51 lines (51 loc) · 1.41 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
{
"name": "drupal/mailjet",
"type": "drupal-module",
"description": "Mailjet Drupal8 integration",
"keywords": [
"Drupal"
],
"license": "GPL-2.0+",
"homepage": "https://www.drupal.org/project/mailjet",
"minimum-stability": "dev",
"support": {
"issues": "https://www.drupal.org/project/issues/mailjet",
"source": "http://cgit.drupalcode.org/mailjet"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:mailjet/mailjet-apiv3-php.git"
}
],
"require": {
"mailjet/mailjet-apiv3-php": "dev-master",
"guzzlehttp/guzzle": "^6.0"
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-install-cmd": [
"find ./vendor -name '.git' | xargs rm -rf",
"find ./vendor -name '.gitignore' | xargs rm -rf"
],
"post-update-cmd": [
"find ./vendor -name '.git' | xargs rm -rf",
"find ./vendor -name '.gitignore' | xargs rm -rf"
]
},
"autoload": {
"psr-4": {
"MailjetTools\\": "lib/mailjet-api-php"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan": "1.11.x-dev"
}
}