-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.73 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.73 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
{
"name": "ipgeolocation/ipgeolocation-php-sdk",
"description": "Official PHP SDK for the IPGeolocation.io IP Location API with single and bulk lookup support.",
"keywords": [
"ipgeolocation",
"geolocation",
"ip",
"ip-location",
"ip-geolocation",
"ip-lookup",
"php",
"sdk",
"api",
"ipv4",
"ipv6",
"domain-lookup",
"hostname",
"security",
"abuse",
"asn",
"timezone",
"user-agent",
"bulk-lookup"
],
"homepage": "https://ipgeolocation.io",
"support": {
"docs": "https://ipgeolocation.io/documentation/ip-location-api.html",
"issues": "https://github.com/IPGeolocation/ip-geolocation-api-php/issues",
"source": "https://github.com/IPGeolocation/ip-geolocation-api-php"
},
"license": "Apache-2.0",
"authors": [
{
"name": "IPGeolocation.io",
"homepage": "https://ipgeolocation.io"
}
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Ipgeolocation\\Sdk\\": "lib/"
},
"files": [
"lib/Exceptions.php",
"lib/Models.php"
]
},
"autoload-dev": {
"psr-4": {
"Ipgeolocation\\Sdk\\Test\\": "tests/ip_location/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:unit": "vendor/bin/phpunit --exclude-group live",
"test:live": "vendor/bin/phpunit --group live"
}
}