forked from hCaptcha/hcaptcha-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "hcaptcha/hcaptcha-wordpress-plugin",
"description": "hCaptcha WordPress plugin",
"license": "GPL-2.0-or-later",
"keywords": [
"hcaptcha"
],
"homepage": "https://wordpress.org/plugins/hcaptcha-for-forms-and-more/",
"type": "wordpress-plugin",
"authors": [
{
"name": "hCaptcha",
"homepage": "https://hCaptcha.com/"
},
{
"name": "KAGG Design",
"email": "info@kagg.eu",
"homepage": "https://kagg.eu/en/"
}
],
"support": {
"issues": "https://wordpress.org/support/plugin/hcaptcha-for-forms-and-more"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"ext-json": "*"
},
"require-dev": {
"10up/wp_mock": "0.2 - 0.4",
"codeception/codeception": "^4.1",
"codeception/module-db": "^1.1",
"codeception/module-webdriver": "^1.4",
"lucatume/wp-browser": "^3.1",
"lucatume/function-mocker": "dev-master",
"squizlabs/php_codesniffer": "^3.6",
"phpcompatibility/php-compatibility": "9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3"
},
"autoload": {
"psr-4": {
"HCaptcha\\": "src/php"
}
},
"autoload-dev": {
"psr-4": {
"HCaptcha\\": "src/php",
"HCaptcha\\Tests\\Acceptance\\": ".tests/php/acceptance",
"HCaptcha\\Tests\\Integration\\": ".tests/php/integration",
"HCaptcha\\Tests\\Unit\\": ".tests/php/unit"
},
"classmap": [
".tests/php/integration/Stubs"
]
},
"bin": [
"bin/update-tests"
],
"scripts": {
"pre-update-cmd": "update-tests",
"update-tests": "update-tests",
"revert-tests": "update-tests revert",
"phpcs": "vendor/bin/phpcs --colors --standard=phpcs.xml",
"acceptance": "codecept run acceptance -c .codeception.yml",
"integration": "codecept run integration -c .codeception.yml",
"unit": "codecept run unit -c .codeception.yml"
}
}