├── LICENSE.txt ├── README.md ├── composer.json ├── config └── Migrations │ └── 20190914000000_CreateSocialProfiles.php ├── src ├── Database │ └── Type │ │ └── SerializedType.php ├── Middleware │ └── SocialAuthMiddleware.php ├── Model │ ├── Entity │ │ └── SocialProfile.php │ └── Table │ │ └── SocialProfilesTable.php └── SocialAuthPlugin.php └── tests ├── TestCase ├── Middleware │ └── SocialAuthMiddlewareTest.php └── Model │ └── Table │ └── SocialProfilesTableTest.php ├── bootstrap.php ├── schema.php └── test_app └── src └── Http └── TestRequestHandler.php /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/composer.json -------------------------------------------------------------------------------- /config/Migrations/20190914000000_CreateSocialProfiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/config/Migrations/20190914000000_CreateSocialProfiles.php -------------------------------------------------------------------------------- /src/Database/Type/SerializedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/src/Database/Type/SerializedType.php -------------------------------------------------------------------------------- /src/Middleware/SocialAuthMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/src/Middleware/SocialAuthMiddleware.php -------------------------------------------------------------------------------- /src/Model/Entity/SocialProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/src/Model/Entity/SocialProfile.php -------------------------------------------------------------------------------- /src/Model/Table/SocialProfilesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/src/Model/Table/SocialProfilesTable.php -------------------------------------------------------------------------------- /src/SocialAuthPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/src/SocialAuthPlugin.php -------------------------------------------------------------------------------- /tests/TestCase/Middleware/SocialAuthMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/tests/TestCase/Middleware/SocialAuthMiddlewareTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/SocialProfilesTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/tests/TestCase/Model/Table/SocialProfilesTableTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/tests/schema.php -------------------------------------------------------------------------------- /tests/test_app/src/Http/TestRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADmad/cakephp-social-auth/HEAD/tests/test_app/src/Http/TestRequestHandler.php --------------------------------------------------------------------------------