-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
executable file
·40 lines (40 loc) · 1.08 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
{
"name": "ibericode/mailchimp-for-wordpress",
"description": "Mailchimp plugin for WordPress",
"keywords": ["wordpress", "mailchimp"],
"homepage": "https://www.mc4wp.com/",
"license": "GPL-3.0+",
"type": "wordpress-plugin",
"authors": [
{
"name": "Danny van Kooten",
"email": "[email protected]",
"homepage": "https://dannyvankooten.com"
}
],
"support": {
"issues": "https://github.com/ibericode/mailchimp-for-wordpress/issues",
"forum": "https://wordpress.org/support/plugin/mailchimp-for-wp",
"source": "https://github.com/ibericode/mailchimp-for-wordpress"
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"brain/monkey": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "dev-develop"
},
"scripts": {
"make-pot": "wp i18n make-pot . languages/mailchimp-for-wp.pot --exclude=assets/js",
"test": "phpunit tests/",
"codestyle": "phpcs -n -s"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev"
}