-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.83 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.83 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "solvercaptcha/solvecaptcha-php",
"type": "library",
"description": "PHP package for easy integration with solvecaptcha API.",
"homepage": "https://solvecaptcha.com/",
"keywords": [
"solvecaptcha",
"captcha",
"recaptcha",
"funcaptcha",
"keycaptcha",
"geetest",
"anticaptcha",
"recaptcha v2",
"recaptcha v3",
"bypass captcha",
"solve captcha",
"captcha solver",
"decaptcha",
"solvecaptcha.com",
"lemin",
"cloudflare turnstile",
"amazon waf",
"audio captcha",
"Tencent",
"MTCaptcha",
"Cutcaptcha",
"Friendly Captcha",
"atbCAPTCHA",
"DataDome"
],
"license": "MIT",
"authors": [
{
"name": "solvecaptcha",
"email": "info@solvecaptcha.com",
"homepage": "https://solvecaptcha.com/"
}
],
"support": {
"issues": "https://github.com/solvercaptcha/solvecaptcha-php/issues",
"source": "https://github.com/solvercaptcha/solvecaptcha-php",
"docs": "https://github.com/solvercaptcha/solvecaptcha-php/blob/main/README.md",
"email": "info@solvecaptcha.com"
},
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "9.6.*"
},
"autoload": {
"psr-4": {
"SolveCaptcha\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SolveCaptcha\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/solvercaptcha/solvecaptcha-php"
}
]
}