├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── ClaimsAwareInterface.php ├── Coder.php ├── Security │ ├── TokenAuthenticator.php │ ├── UsernamePasswordAuthenticator.php │ └── WebTokenToken.php └── WebToken.php └── tests ├── CoderTest.php └── Security ├── TokenAuthenticatorTest.php ├── UsernamePasswordAuthenticatorTest.php └── WebTokenTokenTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ClaimsAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/src/ClaimsAwareInterface.php -------------------------------------------------------------------------------- /src/Coder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/src/Coder.php -------------------------------------------------------------------------------- /src/Security/TokenAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/src/Security/TokenAuthenticator.php -------------------------------------------------------------------------------- /src/Security/UsernamePasswordAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/src/Security/UsernamePasswordAuthenticator.php -------------------------------------------------------------------------------- /src/Security/WebTokenToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/src/Security/WebTokenToken.php -------------------------------------------------------------------------------- /src/WebToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/src/WebToken.php -------------------------------------------------------------------------------- /tests/CoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/tests/CoderTest.php -------------------------------------------------------------------------------- /tests/Security/TokenAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/tests/Security/TokenAuthenticatorTest.php -------------------------------------------------------------------------------- /tests/Security/UsernamePasswordAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/tests/Security/UsernamePasswordAuthenticatorTest.php -------------------------------------------------------------------------------- /tests/Security/WebTokenTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flint/Antenna/HEAD/tests/Security/WebTokenTokenTest.php --------------------------------------------------------------------------------