-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
42 lines (42 loc) · 1.12 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
{
"name": "hryvinskyi/magento2-invisible-captcha",
"description": "Magento 2 Google Invisible Captcha (Recaptcha) module",
"require": {
"ext-dom": "*",
"php": "~7.1.3||~7.2.0||~7.3.0||~7.4.0||~8.0||~8.1||~8.2",
"symfony/dom-crawler": ">=2.7 <5.0",
"voku/simple_html_dom": "4.8.6",
"magento/framework": "*",
"magento/module-store": "*",
"magento/module-customer": "*",
"magento/module-checkout": "*",
"hryvinskyi/magento2-base": "2.1.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"type": "magento2-module",
"version": "2.4.8",
"license": "MIT",
"authors": [
{
"name": "Volodymyr Hryvinskyi",
"email": "[email protected]"
}
],
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Hryvinskyi\\InvisibleCaptcha\\": ""
}
},
"config": {
"secure-http": false
},
"repositories": [
{
"type": "composer",
"url": "http://repo.magento.com/"
}
]
}