-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
60 lines (60 loc) · 1.3 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mlocati/ip-lib",
"description": "Handle IPv4, IPv6 addresses and ranges",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/mlocati/ip-lib",
"authors": [
{
"name": "Michele Locati",
"homepage": "https://github.com/mlocati",
"email": "mlocati@gmail.com",
"role": "Author"
}
],
"keywords": [
"ip",
"ipv4",
"ipv6",
"range",
"network",
"networking",
"address",
"addresses",
"subnet",
"matching",
"managing",
"manage"
],
"require": {
"php": ">=5.3.3"
},
"autoload": {
"psr-4": {
"IPLib\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IPLib\\Test\\": "test/tests/",
"IPLib\\Test\\Helpers\\": "test/helpers/"
}
},
"require-dev": {
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.5 || ^9.5"
},
"scripts": {
"test": "phpunit"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mlocati"
},
{
"type": "other",
"url": "https://paypal.me/mlocati"
}
]
}