-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
39 lines (39 loc) · 981 Bytes
/
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": "ip2location/ip2proxy-laravel",
"description": "Allows user to query an IP address if it was being used as open proxy, web proxy, VPN anonymizer and TOR exits.",
"license": "MIT",
"keywords": [
"laravel",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9",
"laravel 10",
"laravel 11",
"IP2Proxy",
"proxy"
],
"authors": [
{
"name": "IP2Location",
"email": "support@ip2location.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4",
"ip2location/ip2proxy-php": ">=4"
},
"autoload": {
"psr-4": {
"Ip2location\\IP2ProxyLaravel\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ip2location\\IP2ProxyLaravel\\IP2ProxyLaravelServiceProvider"
]
}
}
}