-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.17 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
{
"name": "silverback/svbk-wp-email",
"description": "Send Wordpress emails with templates through Email Services API (Sendinblue, Mandrill..)",
"type": "wordpress-muplugin",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Brando Meniconi",
"email": "b.meniconi@silverbackstudio.it"
}
],
"autoload": {
"psr-4": {"Svbk\\WP\\Email\\": "src/"}
},
"conflict": {
"wpackagist-plugin/mailin":"*"
},
"replace": {
"silverbackstudio/wp-email":"^2.0.0"
},
"require": {
"drewm/mailchimp-api": "^2.4",
"mandrill/mandrill": "^1.0",
"sendinblue/api-v3-sdk": "^6.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"wp-coding-standards/wpcs": "^0.13.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.2",
"phpcompatibility/php-compatibility": "^9.0"
},
"scripts": {
"test": [
"vendor/bin/phpcs src",
"vendor/bin/phpunit --bootstrap ../../../wp/wp-load.php --color tests"
],
"beautify": [
"vendor/bin/phpcbf src"
]
}
}