-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 855 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 855 Bytes
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
{
"name": "ivanamat/cakephp-captcha",
"description": "CakePHP 4.5.x - reCAPTCHA plugin",
"keywords": ["cakephp", "cakephp4", "cakephp3", "cake3", "plugin", "captcha", "recaptcha","google"],
"homepage": "https://github.com/ivanamat/cakephp-captcha",
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name": "Ivan Amat",
"homepage": "http://www.ivanamat.es",
"role": "Author"
},
{
"name": "BusaniPrepaid",
"homepage": "https://github.com/BusaniPrepaid",
"role": "Contributor"
}
],
"require": {
"php": ">=7.4",
"cakephp/cakephp": "4.5.x"
},
"autoload": {
"psr-4": {
"Captcha\\": "src"
},
"classmap": [
"Lib/ReCaptcha"
]
}
}