-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
87 lines (87 loc) · 2.55 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
{
"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"
},
"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.73"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"antecedent/patchwork": "^2.2.1",
"10up/wp_mock": "0.4.2 - 1.0.1",
"codeception/codeception": "4.2.2",
"codeception/module-db": "1.2.0 - 3.1.4",
"codeception/module-webdriver": "1.4.1 - 4.0.2",
"lucatume/function-mocker": "^2.0.0",
"lucatume/wp-browser": "3.7.11 - 4.4.1",
"squizlabs/php_codesniffer": "^3.11.2",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1.6",
"wp-coding-standards/wpcs": "^3.1.0"
},
"autoload": {
"psr-4": {
"HCaptcha\\": "src/php",
"HCaptcha\\Scoper\\": ".php-scoper/src",
"KAGG\\Settings\\Abstracts\\": "src/php/Settings/Abstracts"
},
"classmap": [
"vendors"
],
"exclude-from-classmap": [
"src/php/Divi/WPTestCaseStub.php"
]
},
"autoload-dev": {
"psr-4": {
"HCaptcha\\": "src/php",
"HCaptcha\\Tests\\Integration\\": ".tests/php/integration",
"HCaptcha\\Tests\\Unit\\": ".tests/php/unit"
}
},
"scripts": {
"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",
"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"
]
}
}