├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── config └── .keep ├── docs ├── CHANGELOG.md ├── Meeting-Fields │ ├── ar.md │ └── en.md ├── thumbnail.png └── thumbnail.psd ├── examples ├── MeetingExamples.php └── UserExamples.php └── src ├── Helpers └── ResponseHelper.php ├── Interfaces ├── ZoomAuthenticatorInterface.php ├── ZoomClientInterface.php ├── ZoomMeetingManagementInterface.php └── ZoomUserManagementInterface.php ├── Services ├── ZoomMeetingManagementService.php └── ZoomUserManagementService.php ├── ZoomAuthenticator.php ├── ZoomClient.php └── ZoomIntegrationService.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/composer.json -------------------------------------------------------------------------------- /config/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/Meeting-Fields/ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/docs/Meeting-Fields/ar.md -------------------------------------------------------------------------------- /docs/Meeting-Fields/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/docs/Meeting-Fields/en.md -------------------------------------------------------------------------------- /docs/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/docs/thumbnail.png -------------------------------------------------------------------------------- /docs/thumbnail.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/docs/thumbnail.psd -------------------------------------------------------------------------------- /examples/MeetingExamples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/examples/MeetingExamples.php -------------------------------------------------------------------------------- /examples/UserExamples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/examples/UserExamples.php -------------------------------------------------------------------------------- /src/Helpers/ResponseHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/Helpers/ResponseHelper.php -------------------------------------------------------------------------------- /src/Interfaces/ZoomAuthenticatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/Interfaces/ZoomAuthenticatorInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ZoomClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/Interfaces/ZoomClientInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ZoomMeetingManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/Interfaces/ZoomMeetingManagementInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ZoomUserManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/Interfaces/ZoomUserManagementInterface.php -------------------------------------------------------------------------------- /src/Services/ZoomMeetingManagementService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/Services/ZoomMeetingManagementService.php -------------------------------------------------------------------------------- /src/Services/ZoomUserManagementService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/Services/ZoomUserManagementService.php -------------------------------------------------------------------------------- /src/ZoomAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/ZoomAuthenticator.php -------------------------------------------------------------------------------- /src/ZoomClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/ZoomClient.php -------------------------------------------------------------------------------- /src/ZoomIntegrationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdulbasetRS/Zoom-Integration/HEAD/src/ZoomIntegrationService.php --------------------------------------------------------------------------------