forked from dapphp/securimage
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 761 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 761 Bytes
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
{
"name": "dapphp/securimage",
"type": "library",
"description": "PHP CAPTCHA Library",
"keywords": ["captcha","security","forms","anti-spam"],
"homepage": "https://github.com/dapphp/securimage",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Drew Phillips",
"email": "drew@drew-phillips.com"
}
],
"require": {
"php": ">=5.4",
"ext-gd": "*"
},
"suggest": {
"ext-pdo": "For database storage support",
"ext-pdo_mysql": "For MySQL database support",
"ext-pdo_sqlite": "For SQLite3 database support"
},
"autoload": {
"classmap": ["securimage.php"],
"psr-4" : {
"Securimage\\" : "./"
}
}
}