forked from ibericode/mailchimp-for-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·58 lines (58 loc) · 1.86 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
52
53
54
55
56
57
58
{
"name": "ibericode/mailchimp-for-wordpress",
"description": "MailChimp plugin for WordPress",
"keywords": ["wordpress", "mailchimp"],
"homepage": "https://mc4wp.com/",
"license": "GPL-2.0+",
"type": "wordpress-plugin",
"authors": [
{
"name": "Danny van Kooten",
"email": "hi@dannyvankooten.com",
"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": ">=5.2.14",
"xrstf/composer-php52": "1.*"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"wp-coding-standards/wpcs": "dev-master",
"codeclimate/php-test-reporter": "dev-master",
"brain/monkey": "1.*"
},
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"test": "vendor/bin/phpunit",
"check-codestyle": "vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs && vendor/bin/phpcs ./includes -p -s -v -n --standard=./codesniffer.xml --extensions=php",
"test-coverage-reporter": "if [ $CODECLIMATE_REPO_TOKEN ]; then vendor/bin/test-reporter; else echo 'Error: define CODECLIMATE_REPO_TOKEN before running this command.'; fi"
},
"autoload": {
"classmap": [
"includes/",
"integrations/"
],
"files": [
"includes/functions.php",
"includes/deprecated-functions.php",
"includes/forms/functions.php",
"includes/integrations/functions.php",
"includes/default-actions.php",
"includes/default-filters.php"
]
}
}