-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathcomposer.json
executable file
·33 lines (33 loc) · 978 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
{
"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.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.11"
},
"scripts": {
"make-pot": "wp i18n make-pot . languages/mailchimp-for-wp.pot --exclude=assets/js",
"test": "phpunit tests/",
"codestyle": "phpcs -n -s",
"check-syntax": "./bin/check-php-syntax"
}
}