├── .gitignore ├── Testfiles ├── dotcomTest.php ├── doteuTest.php └── dotnlTest.php ├── composer.json ├── composer.lock ├── readme.md ├── test.php └── validate.php /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/private/ -------------------------------------------------------------------------------- /Testfiles/dotcomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/Testfiles/dotcomTest.php -------------------------------------------------------------------------------- /Testfiles/doteuTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/Testfiles/doteuTest.php -------------------------------------------------------------------------------- /Testfiles/dotnlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/Testfiles/dotnlTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/composer.lock -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/readme.md -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/test.php -------------------------------------------------------------------------------- /validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metaregistrar/php-dnssec-validator/HEAD/validate.php --------------------------------------------------------------------------------