-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
39 lines (39 loc) · 1.12 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
{
"name": "fabianwennink/iconcaptcha",
"description": "IconCaptcha is a self-hosted, customizable, easy-to-implement and user-friendly captcha.",
"license": "MIT",
"type": "library",
"keywords": [
"iconcaptcha",
"captcha",
"anti-bot",
"bots",
"anti-spam",
"spam"
],
"homepage": "https://github.com/fabianwennink/IconCaptcha-PHP",
"authors": [
{
"name": "Fabian Wennink",
"homepage": "https://www.fabianwennink.nl/en"
}
],
"support": {
"issues": "https://github.com/fabianwennink/IconCaptcha-PHP/issues",
"wiki": "https://github.com/fabianwennink/IconCaptcha-PHP/wiki"
},
"require": {
"php": ">=7.4",
"ext-json": "*"
},
"suggest": {
"ext-gd": "Required if you wish to use the GD image generator.",
"ext-imagick": "Required if you wish to use the ImageMagick image generator.",
"ext-pdo": "Required if you wish to use the default PDOSession class."
},
"autoload": {
"psr-4": {
"IconCaptcha\\": "src/"
}
}
}