-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "rahul900day/laravel-captcha",
"description": "Different types of Captcha implementation for Laravel Application.",
"keywords": [
"rahul900day",
"laravel",
"laravel-captcha",
"laravel-recaptcha",
"laravel-hcaptcha"
],
"homepage": "https://github.com/RahulDey12/laravel-captcha",
"license": "MIT",
"authors": [
{
"name": "Rahul Dey",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5",
"illuminate/http": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/validation": "^10.0|^11.0",
"illuminate/view": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.5.0",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.0",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"Rahul900day\\Captcha\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rahul900day\\Captcha\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Rahul900day\\Captcha\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Rahul900day\\Captcha\\Facades\\Captcha"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}