├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Exceptions │ └── IdentifyException.php ├── Facades │ └── IdentityFacade.php ├── Identify.php └── IdentifyServiceProvider.php └── tests ├── IdentifyServiceProviderTest.php └── IdentifyTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .DS_Store 3 | composer.lock -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Exceptions/IdentifyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/src/Exceptions/IdentifyException.php -------------------------------------------------------------------------------- /src/Facades/IdentityFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/src/Facades/IdentityFacade.php -------------------------------------------------------------------------------- /src/Identify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/src/Identify.php -------------------------------------------------------------------------------- /src/IdentifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/src/IdentifyServiceProvider.php -------------------------------------------------------------------------------- /tests/IdentifyServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/tests/IdentifyServiceProviderTest.php -------------------------------------------------------------------------------- /tests/IdentifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsoleTVs/Identify/HEAD/tests/IdentifyTest.php --------------------------------------------------------------------------------