forked from greggilbert/recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 979 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
{
"name": "greggilbert/recaptcha",
"description": "reCAPTCHA Validator for Laravel 5",
"keywords": ["recaptcha", "captcha", "laravel", "laravel5"],
"homepage": "http://github.com/greggilbert/recaptcha",
"license": "MIT",
"abandoned": true,
"authors": [
{
"name": "Greg Gilbert",
"email": "greg@greg-gilbert.com"
}
],
"require": {
"php": "^7.2 || ^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-4": {
"Greggilbert\\Recaptcha\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Greggilbert\\Recaptcha\\RecaptchaServiceProvider"
],
"aliases": {
"Recaptcha": "Greggilbert\\Recaptcha\\Facades\\Recaptcha"
}
}
},
"minimum-stability": "dev"
}