-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 1.18 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
{
"name": "wp-digital/wp-recaptcha",
"version": "3.0.5",
"type": "wordpress-muplugin",
"description": "Helps to protect website with Google reCAPTCHA v3 or Cloudflare Turnstile.",
"license": "GPL-2.0+",
"keywords": [
"recaptcha",
"security",
"wordpress",
"wp-digital",
"turnstile"
],
"authors": [
{
"name": "SMFB Dinamo",
"email": "[email protected]",
"homepage": "https://www.smfb-dinamo.com/"
},
{
"name": "Viktor Kuliebiakin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer/installers": "~1.0",
"vectorface/whip": "^0.4.0",
"php-di/php-di": "^7.0"
},
"require-dev": {
"innocode-digital/php-cs": "^1.0",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"WPD\\Recaptcha\\": "src/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}