Mirror of v1.1.0
Old host https://bitbucket.org/xrstf/ip-utils has removed the repository.
Showing
.hg_archival.txt
0 → 100644
.hgignore
0 → 100644
.hgtags
0 → 100644
LICENSE
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "xrstf/ip-utils", | ||
"description": "small library to deal with IPv4 & IPv6 addresses and subnets", | ||
"keywords": [ | ||
"ip", | ||
"ipv4", | ||
"ipv6", | ||
"subnet", | ||
"matching" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Christoph Mewes", | ||
"homepage": "http://www.xrstf.de/" | ||
} | ||
], | ||
"license": "MIT", | ||
"type": "library", | ||
"require": { | ||
"php": ">=5.3.0" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"IpUtils\\": "lib/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-default": "1.x-dev" | ||
} | ||
} | ||
} |
lib/IpUtils/Address/IPv4.php
0 → 100644
lib/IpUtils/Address/IPv6.php
0 → 100644
lib/IpUtils/Factory.php
0 → 100644