-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 730 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 730 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": "ip2location/ip2location-php",
"description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
"keywords": ["ip2location", "ip2locationlite", "geolocation", "ip geolocation", "isp", "time zone", "mnc", "mcc", "usage type", "zip code", "area code"],
"homepage": "https://www.ip2location.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "IP2Location",
"email": "support@ip2location.com",
"homepage": "https://www.ip2location.com"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"require": {
"php": ">=7.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"IP2Location\\": "src"
}
}
}