├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── classes └── Leth │ └── IPAddress │ ├── IP │ ├── Address.php │ ├── NetworkAddress.php │ └── NetworkAddressIterator.php │ ├── IPv4 │ ├── Address.php │ └── NetworkAddress.php │ └── IPv6 │ ├── Address.php │ └── NetworkAddress.php ├── composer.json ├── lgpl-3.0.txt ├── phpstan.neon ├── phpunit.xml.dist └── tests ├── IPAddressTest.php ├── IPNetworkAddressTest.php ├── IPv4AddressTest.php ├── IPv4NetworkAddressTest.php ├── IPv6AddressTest.php ├── IPv6NetworkAddressTest.php └── bootstrap.php /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | lgpl-3.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/README.md -------------------------------------------------------------------------------- /classes/Leth/IPAddress/IP/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/classes/Leth/IPAddress/IP/Address.php -------------------------------------------------------------------------------- /classes/Leth/IPAddress/IP/NetworkAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/classes/Leth/IPAddress/IP/NetworkAddress.php -------------------------------------------------------------------------------- /classes/Leth/IPAddress/IP/NetworkAddressIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/classes/Leth/IPAddress/IP/NetworkAddressIterator.php -------------------------------------------------------------------------------- /classes/Leth/IPAddress/IPv4/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/classes/Leth/IPAddress/IPv4/Address.php -------------------------------------------------------------------------------- /classes/Leth/IPAddress/IPv4/NetworkAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/classes/Leth/IPAddress/IPv4/NetworkAddress.php -------------------------------------------------------------------------------- /classes/Leth/IPAddress/IPv6/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/classes/Leth/IPAddress/IPv6/Address.php -------------------------------------------------------------------------------- /classes/Leth/IPAddress/IPv6/NetworkAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/classes/Leth/IPAddress/IPv6/NetworkAddress.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/composer.json -------------------------------------------------------------------------------- /lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/lgpl-3.0.txt -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/IPAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/tests/IPAddressTest.php -------------------------------------------------------------------------------- /tests/IPNetworkAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/tests/IPNetworkAddressTest.php -------------------------------------------------------------------------------- /tests/IPv4AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/tests/IPv4AddressTest.php -------------------------------------------------------------------------------- /tests/IPv4NetworkAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/tests/IPv4NetworkAddressTest.php -------------------------------------------------------------------------------- /tests/IPv6AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/tests/IPv6AddressTest.php -------------------------------------------------------------------------------- /tests/IPv6NetworkAddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/tests/IPv6NetworkAddressTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leth/PHP-IPAddress/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------