-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 951 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": "basselin/zf2-new-recaptcha",
"description": "Class using Google reCAPTCHA",
"license": "MIT",
"type": "library",
"keywords": [
"zendframework",
"google", "recaptcha", "captcha"
],
"homepage": "https://github.com/basselin/zf2-new-recaptcha",
"authors": [
{
"name": "Benoit Asselin",
"email": "contact@161.io",
"homepage": "http://161.io"
}
],
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-form": "^2.9",
"zendframework/zend-http": "^2.5.4",
"zendframework/zend-inputfilter": "^2.7.2",
"zendframework/zend-modulemanager": "^2.7.1",
"zendframework/zend-servicemanager": "^3.1",
"zendframework/zend-stdlib": "^3.0.1",
"zendframework/zend-view": "^2.8"
},
"autoload": {
"psr-4": {
"NewReCaptcha\\": "src/NewReCaptcha/"
}
}
}