-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
46 lines (46 loc) · 953 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-h-captcha",
"description": "hCaptcha for Laravel",
"keywords": [
"h-captcha",
"hcaptcha",
"captcha",
"laravel",
"laravel 5",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9",
"laravel 10",
"laravel 11"
],
"homepage": "https://github.com/thinhbuzz/laravel-h-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.*",
"guzzlehttp/guzzle": "6.*|7.*"
},
"autoload": {
"psr-4": {
"Buzz\\LaravelHCaptcha\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Buzz\\LaravelHCaptcha\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Buzz\\LaravelHCaptcha\\CaptchaFacade"
}
}
}
}