-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
31 lines (31 loc) · 958 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
{
"name": "ip2location/ip2location-cakephp",
"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": ["cakephp", "ip2location", "geolocation"],
"homepage": "https://github.com/ip2location/ip2location-cakephp",
"license": "MIT",
"authors": [
{
"name": "IP2Location",
"email": "support@ip2location.com"
}
],
"require": {
"php": ">=5.4.0",
"cakephp/cakephp": ">=3.0",
"ip2location/ip2location-php": ">=9.0"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"IP2LocationCakePHP\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IP2LocationCakePHP\\Test\\": "tests"
}
}
}