-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.47 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
{
"name": "s1syphos/php-simple-captcha",
"description": "Simple captcha generator",
"type": "library",
"license": "MIT",
"version": "2.3.0",
"keywords": ["captcha", "anti-spam", "spam-protection", "spam", "obfuscation", "security", "anti-bot", "no-bot", "bot-protection"],
"homepage": "https://codeberg.org/S1SYPHOS/php-simple-captcha",
"scripts": {
"lint": "pint --verbose",
"test": "phpunit"
},
"authors": [
{
"name": "Grégoire Passault",
"email": "[email protected]",
"homepage": "http://www.gregwar.com",
"role": "Founder"
},
{
"name": "Jeremy Livingston",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Martin Folkers",
"email": "[email protected]",
"homepage": "https://twobrain.io",
"role": "Maintainer"
}
],
"require": {
"php": "^8.0",
"ext-gd": "*",
"ext-mbstring": "*"
},
"suggest": {
"thiagoalessio/tesseract_ocr": "Provides better results when building against OCR. Requires 'tesseract-ocr' to be installed."
},
"require-dev": {
"laravel/pint": "^1.4",
"phpunit/phpunit": "^9.5",
"mikey179/vfsstream": "^1.6",
"vimeo/psalm": "^5.6"
},
"autoload": {
"psr-4": {
"SimpleCaptcha\\": "src/"
}
}
}