-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
61 lines (61 loc) · 1.73 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
59
60
61
{
"name": "codekraft/contactform7-antispam",
"description": "AntiSpam for Contact Form 7",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Erik Golinelli",
"email": "erik@codekraft.t",
"homepage": "https://modul-r.codekraft.it/"
}
],
"homepage": "https://wordpress.org/plugins/cf7-antispam/",
"require-dev": {
"php": ">=7.4",
"friendsofphp/php-cs-fixer": "3.*",
"squizlabs/php_codesniffer": "^3",
"phpcompatibility/php-compatibility": "*",
"wp-coding-standards/wpcs": "^2.3",
"automattic/vipwpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^9.6.13",
"wp-phpunit/wp-phpunit": "^5.9.5",
"yoast/phpunit-polyfills": "^1.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"ext-dom": "*",
"ext-libxml": "*"
},
"require": {
"geoip2/geoip2": "~2.0",
"ext-json": "*",
"ext-openssl": "*"
},
"scripts": {
"PHPCS": "vendor/bin/phpcs --standard=phpcs.xml.dist -s --report=full,summary,source",
"PHPCBF": "vendor/bin/phpcbf --standard=phpcs.xml.dist --report=full,summary,source",
"test": "vendor/bin/phpunit -c phpunit.xml.dist",
"test-multisite": "WP_MULTISITE=1 vendor/bin/phpunit -c tests/multisite.xml --verbose"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"b8\\": "core/b8/b8/",
"CF7_AntiSpam\\Core\\": "core/",
"CF7_AntiSpam\\Engine\\": "engine/",
"CF7_AntiSpam\\Admin\\": "admin/"
}
},
"autoload-dev": {
"psr-4": {
"CF7_AntiSpam\\Tests\\": "tests/"
}
}
}