Validation is ready.

This commit is contained in:
2023-12-03 00:46:06 +06:00
parent 250c1a9f8d
commit c39f6ba4d7
5 changed files with 201 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"name": "kor-elf/captcha-rule-for-laravel",
"description": "Validation Rule Captcha for Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"captcha",
"laravel",
"validation"
],
"homepage": "https://git.kor-elf.net/kor-elf/captcha-rule-for-laravel",
"authors": [
{
"name": "Leonid Nikitin",
"email": "i@kor-elf.net",
"homepage": "https://git.kor-elf.net/kor-elf",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.0",
"guzzlehttp/guzzle": "^7.0.1"
},
"extra": {
"laravel": {
"providers": [
"korElf\\CaptchaRuleForLaravel\\CaptchaProvider"
]
}
},
"autoload": {
"psr-4": {
"korElf\\CaptchaRuleForLaravel\\": "src/"
},
"files": [
"src/helpers.php"
]
}
}