-
Notifications
You must be signed in to change notification settings - Fork 452
/
composer.json
57 lines (57 loc) · 1.27 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": "mews/captcha",
"type": "package",
"description": "Laravel 5/6/7/8/9/10/11 Captcha Package",
"keywords": ["laravel6 Captcha", "laravel6 Security", "laravel6 Captcha", "laravel5 Security", "Captcha"],
"homepage": "https://github.com/mewebstudio/captcha",
"license": "MIT",
"authors": [
{
"name": "Muharrem ERİN",
"email": "[email protected]",
"homepage": "https://github.com/mewebstudio",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.1|^8.2|^8.3",
"ext-gd": "*",
"illuminate/config": "~5|^6|^7|^8|^9|^10|^11",
"illuminate/filesystem": "~5|^6|^7|^8|^9|^10|^11",
"illuminate/support": "~5|^6|^7|^8|^9|^10|^11",
"illuminate/hashing": "~5|^6|^7|^8|^9|^10|^11",
"illuminate/session": "~5|^6|^7|^8|^9|^10|^11",
"intervention/image": "^3.7"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5.10|^10.5",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Mews\\Captcha\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests"
],
"psr-4": {
"Mews\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Mews\\Captcha\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Mews\\Captcha\\Facades\\Captcha"
}
}
}
}