forked from mlocati/ip-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.03 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
{
"name": "mlocati/ip-lib",
"type": "library",
"description": "Handle IPv4, IPv6 addresses and ranges",
"keywords": [
"ip",
"ipv4",
"ipv6",
"range",
"network",
"networking",
"address",
"addresses",
"subnet",
"matching"
],
"homepage": "https://github.com/mlocati/ip-lib",
"license": "MIT",
"authors": [
{
"name": "Michele Locati",
"homepage": "https://github.com/mlocati",
"email": "mlocati@gmail.com",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"IPLib\\": "src/"
}
},
"require": {
"php": ">=5.3.3"
},
"autoload-dev": {
"psr-4": {
"IPLib\\Test\\": "test/tests/"
}
},
"require-dev": {
"ext-pdo_sqlite": "*",
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5",
"phpunit/dbunit": "^1.4 || ^2 || ^3 || ^4"
},
"scripts": {
"test": "phpunit"
}
}