-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.34 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
37
38
39
40
41
42
43
44
{
"name": "henriqueramos/recaptcha_middleware",
"type": "library",
"description": "Laravel reCaptcha Middleware it's a Composer package created to help us to validate reCaptcha payloads during the initial steps of request lifecycle.",
"keywords": ["laravel", "package", "middleware", "recaptcha", "Henrique Ramos", "madeInBrazil"],
"homepage": "https://henriqueramos.eti.br/opensources",
"license": "MIT",
"authors": [
{
"name": "Henrique Ramos",
"email": "[email protected]",
"homepage": "https://henriqueramos.eti.br",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"laravel/framework": ">=5.7",
"google/recaptcha": "^1.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"slevomat/coding-standard": "~4.0"
},
"autoload": {
"psr-4": {
"RamosHenrique\\reCaptchaMiddleware\\": "src/"
}
},
"scripts": {
"phpcs": [
"@php vendor/bin/phpcs --extensions=php --encoding=utf-8 --tab-width=4 -sp src"
]
},
"extra": {
"laravel": {
"providers": [
"RamosHenrique\\reCaptchaMiddleware\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}