-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.13 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
{
"name": "swjtuhyq/captcha",
"type": "package",
"description": "Lumen 9 & 10 Captcha Package",
"keywords": ["Lumen6 Captcha", "Captcha"],
"homepage": "https://github.com/swjtuhyq/captcha",
"license": "MIT",
"authors": [
{
"name": "Huang Yuqiang",
"email": "[email protected]",
"homepage": "https://github.com/swjtuhyq",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-gd": "*",
"illuminate/config": "^9|^10|^11",
"illuminate/filesystem": "^9|^10|^11",
"illuminate/support": "^9|^10|^11",
"illuminate/hashing": "^9|^10|^11",
"illuminate/session": "^9|^10|^11",
"intervention/image": "~3.5"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Swjtuhyq\\Captcha\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests"
],
"psr-4": {
"Mews\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Swjtuhyq\\Captcha\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Swjtuhyq\\Captcha\\Facades\\Captcha"
}
}
}
}