-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 872 Bytes
/
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
{
"name": "inimist/captcha-demo",
"type": "cakephp-plugin",
"description": "CakePHP Captcha Plugin, Image, Math and Google Recaptcha Support",
"keywords": ["cakephp", "plugin", "captcha", "security", "recaptcha"],
"homepage": "https://github.com/inimist/cakephp-captcha-demo",
"license": "MIT",
"authors": [
{
"name": "Arvind Kumar",
"email": "arvind@inimisttech.com",
"homepage": "https://inimisttech.com",
"role": "Developer"
}
],
"require": {
"cakephp/cakephp": "^3.5.0",
"inimist/cakephp-captcha": "^1.2"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"CaptchaDemo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CaptchaDemo\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
}
}