-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
30 lines (30 loc) · 901 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
{
"name": "ip2location/ip2location-yii",
"description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
"keywords": ["yii2", "ip2location", "geolocation"],
"homepage": "https://github.com/ip2location/ip2location-yii",
"license": "MIT",
"authors": [
{
"name": "IP2Location",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"ip2location/ip2location-php": "9.*"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"IP2LocationYii\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IP2LocationYii\\Test\\": "tests"
}
}
}