-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.11 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.11 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
75
76
77
78
79
80
81
82
83
{
"$schema": "https://raw.githubusercontent.com/composer/composer/main/res/composer-schema.json",
"name": "dimaslanjaka/php-proxy-hunter",
"description": "PHP Proxy Hunter",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"simplehtmldom\\": "src/simplehtmldom/",
"PhpProxyHunter\\": "src/PhpProxyHunter/"
},
"files": [
"data/webgl.php",
"src/autoload.php",
"src/PhpProxyHunter/utils/autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"PhpProxyHunter\\Tests\\": "tests/PhpProxyHunter/"
}
},
"authors": [
{
"name": "dimaslanjaka",
"email": "dimaslanjaka@gmail.com"
}
],
"repositories": [
{
"type": "path",
"url": "packages/proxy-hunter-python",
"options": {
"symlink": true
}
},
{
"type": "vcs",
"url": "https://github.com/helpcenterio/country-codes"
}
],
"require": {
"dimaslanjaka/proxy-hunter-php": "dev-master",
"composer-plugin-api": "^2.3",
"annexare/countries-list": "^3.1",
"geoip2/geoip2": "^2.13",
"maxmind/web-service-common": "^0.9.0",
"google/apiclient": "^2.0",
"vlucas/phpdotenv": "^5.6",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-intl": "*",
"ext-fileinfo": "*",
"phpseclib/phpseclib": "~3.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"ramsey/uuid": "^4.0",
"php-curl-class/php-curl-class": "^9.19 || ^11.0",
"erusev/parsedown": "^1.7",
"symfony/polyfill-mbstring": "^1.32",
"web-auth/webauthn-lib": "^3.0 || ^4.0 || ^5.0"
},
"extra": {
"composer-exit-on-patch-failure": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0 || ^3.0 || ^3.75",
"phpunit/phpunit": "^6 || ^9.6 || ^12.0",
"squizlabs/php_codesniffer": "^3.0 || ^4.0",
"slevomat/coding-standard": "^8.21",
"phpdocumentor/phpdocumentor": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true,
"symfony/thanks": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {}
}