-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
36 lines (36 loc) · 1.18 KB
/
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
{
"name": "captcha-com/laravel-captcha",
"description": "Laravel Captcha Package -- BotDetect PHP CAPTCHA generator integration for the Laravel framework.",
"keywords": ["laravel captcha package", "laravel captcha", "captcha package", "captcha", "captcha generator", "botdetect"],
"homepage": "https://captcha.com/doc/php/laravel-captcha-quickstart.html",
"authors": [
{
"name": "Laravel Captcha Package Support",
"email": "[email protected]",
"homepage": "https://captcha.com/doc/php/laravel-captcha-quickstart.html"
}
],
"support": {
"email": "[email protected]",
"issues": "https://captcha.com/support",
"forum": "https://captcha.com/support",
"source": "https://captcha.com/doc/php/laravel-captcha-quickstart.html"
},
"require": {
"captcha-com/captcha": "4.*",
"php": ">=5.4.0"
},
"autoload": {
"psr-4": {
"LaravelCaptcha\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}