-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 970 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 970 Bytes
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
{
"name": "jaaulde/php-ipv4",
"type": "library",
"description": "PHP classes for working with IPV4 addresses and networks.",
"keywords": ["ip", "ipv4", "network", "subnet", "cidr", "range", "blacklist", "whitelist", "ban"],
"homepage": "https://github.com/JAAulde/php-ipv4",
"license": "MIT",
"authors": [
{
"name": "Jim Auldridge",
"email": "auldridgej@gmail.com",
"homepage": "http://jaaulde.com",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/JAAulde/php-ipv4/issues",
"source": "https://github.com/JAAulde/php-ipv4"
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"JAAulde\\IP\\V4\\": "src/"
}
},
"scripts": {
"test": "phpunit"
}
}