├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── src └── Yubikey │ ├── Client.php │ ├── Request.php │ ├── RequestCollection.php │ ├── Response.php │ ├── ResponseCollection.php │ └── Validate.php ├── test.php └── tests ├── ValidateTest.php ├── bootstrap.php └── phpunit.xml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/composer.json -------------------------------------------------------------------------------- /src/Yubikey/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/src/Yubikey/Client.php -------------------------------------------------------------------------------- /src/Yubikey/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/src/Yubikey/Request.php -------------------------------------------------------------------------------- /src/Yubikey/RequestCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/src/Yubikey/RequestCollection.php -------------------------------------------------------------------------------- /src/Yubikey/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/src/Yubikey/Response.php -------------------------------------------------------------------------------- /src/Yubikey/ResponseCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/src/Yubikey/ResponseCollection.php -------------------------------------------------------------------------------- /src/Yubikey/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/src/Yubikey/Validate.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/test.php -------------------------------------------------------------------------------- /tests/ValidateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/tests/ValidateTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enygma/yubikey/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------