-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
46 lines (46 loc) · 986 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "buzz/laravel-google-captcha",
"description": "Google captcha for Laravel",
"keywords": [
"recaptcha",
"google captcha",
"captcha",
"laravel",
"laravel 5",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9",
"laravel 10",
"laravel 11"
],
"homepage": "https://github.com/thinhbuzz/laravel-google-captcha",
"license": "MIT",
"authors": [
{
"name": "ThinhBuzz",
"email": "[email protected]",
"homepage": "https://www.facebook.com/thinh.buzz"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.*|6.*|7.*|8.*|9.*|10.*|^11.0",
"google/recaptcha": "1.*"
},
"autoload": {
"psr-4": {
"Buzz\\LaravelGoogleCaptcha\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Buzz\\LaravelGoogleCaptcha\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Buzz\\LaravelGoogleCaptcha\\CaptchaFacade"
}
}
}
}