├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── doc └── example-config.php ├── phpcs.xml ├── phpunit.xml.dist ├── src ├── ConfigProvider.php ├── Factory │ ├── IdentityCookieManagerFactory.php │ └── IdentityMiddlewareFactory.php ├── Identity │ ├── IdentityLookupInterface.php │ └── LookupResult.php ├── IdentityCookieManager.php └── IdentityMiddleware.php └── test ├── ConfigProviderTest.php ├── Factory ├── IdentityCookieManagerFactoryTest.php └── IdentityMiddlewareFactoryTest.php ├── Identity └── LookupResultTest.php ├── IdentityCookieManagerTest.php └── IdentityMiddlewareTest.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /phpunit.xml 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/composer.json -------------------------------------------------------------------------------- /doc/example-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/doc/example-config.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Factory/IdentityCookieManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/src/Factory/IdentityCookieManagerFactory.php -------------------------------------------------------------------------------- /src/Factory/IdentityMiddlewareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/src/Factory/IdentityMiddlewareFactory.php -------------------------------------------------------------------------------- /src/Identity/IdentityLookupInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/src/Identity/IdentityLookupInterface.php -------------------------------------------------------------------------------- /src/Identity/LookupResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/src/Identity/LookupResult.php -------------------------------------------------------------------------------- /src/IdentityCookieManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/src/IdentityCookieManager.php -------------------------------------------------------------------------------- /src/IdentityMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/src/IdentityMiddleware.php -------------------------------------------------------------------------------- /test/ConfigProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/test/ConfigProviderTest.php -------------------------------------------------------------------------------- /test/Factory/IdentityCookieManagerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/test/Factory/IdentityCookieManagerFactoryTest.php -------------------------------------------------------------------------------- /test/Factory/IdentityMiddlewareFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/test/Factory/IdentityMiddlewareFactoryTest.php -------------------------------------------------------------------------------- /test/Identity/LookupResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/test/Identity/LookupResultTest.php -------------------------------------------------------------------------------- /test/IdentityCookieManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/test/IdentityCookieManagerTest.php -------------------------------------------------------------------------------- /test/IdentityMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DASPRiD/Helios/HEAD/test/IdentityMiddlewareTest.php --------------------------------------------------------------------------------