forked from hCaptcha/hcaptcha-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
89 lines (89 loc) · 2.56 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"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": "[email protected]",
"homepage": "https://kagg.eu/en/"
}
],
"support": {
"issues": "https://wordpress.org/support/plugin/hcaptcha-for-forms-and-more"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"ext-json": "*",
"matthiasmullie/minify": "^1.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"10up/wp_mock": "0.3 - 0.5",
"codeception/codeception": "^4.2.2",
"codeception/module-db": "^1.2.0",
"codeception/module-webdriver": "^1.4.1",
"lucatume/function-mocker": "dev-master",
"lucatume/wp-browser": "^3.2.3",
"squizlabs/php_codesniffer": "^3.8.1",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1.4",
"wp-coding-standards/wpcs": "^3.0.1"
},
"autoload": {
"psr-4": {
"HCaptcha\\": "src/php",
"HCaptcha\\Scoper\\": ".php-scoper",
"KAGG\\Settings\\Abstracts\\": "src/php/Settings/Abstracts"
},
"classmap": [
"lib"
]
},
"autoload-dev": {
"psr-4": {
"HCaptcha\\": "src/php",
"HCaptcha\\Tests\\Integration\\": ".tests/php/integration",
"HCaptcha\\Tests\\Unit\\": ".tests/php/unit"
}
},
"bin": [
"bin/update-tests"
],
"scripts": {
"pre-update-cmd": "update-tests",
"post-cmd": "HCaptcha\\Scoper\\Scoper::post_cmd",
"post-install-cmd": "@post-cmd",
"post-update-cmd": "@post-cmd",
"post-package-install": "HCaptcha\\Scoper\\Scoper::post_package_install",
"post-package-update": "HCaptcha\\Scoper\\Scoper::post_package_update",
"post-package-uninstall": "HCaptcha\\Scoper\\Scoper::post_package_uninstall",
"update-tests": "update-tests",
"revert-tests": "update-tests revert",
"phpcs": "vendor/bin/phpcs --colors --standard=phpcs.xml",
"integration": "codecept run integration -c codeception.yml",
"unit": "codecept run unit -c codeception.yml"
},
"extra": {
"scope-packages": [
"matthiasmullie/minify",
"matthiasmullie/path-converter"
]
}
}