├── .github ├── ISSUE_TEMPLATE │ ├── ask-a-question.md │ └── bug_report.md ├── dependabot.yml ├── policies │ ├── closeStaleIssues.yml │ └── labelStaleIssues.yml └── workflows │ ├── auto-merge-dependabot.yml │ └── php.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app-auth ├── README.md ├── RegisterAppForAppOnlyAuth.ps1 └── graphapponlytutorial │ ├── .env.example │ ├── GraphHelper.php │ ├── composer.json │ ├── composer.lock │ ├── main.php │ └── phpstan.neon ├── qs.json └── user-auth ├── README.md ├── RegisterAppForUserAuth.ps1 ├── graphtutorial ├── .env.example ├── DeviceCodeTokenProvider.php ├── GraphHelper.php ├── composer.json ├── composer.lock ├── main.php └── phpstan.neon └── version /.github/ISSUE_TEMPLATE/ask-a-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.github/ISSUE_TEMPLATE/ask-a-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/closeStaleIssues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.github/policies/closeStaleIssues.yml -------------------------------------------------------------------------------- /.github/policies/labelStaleIssues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.github/policies/labelStaleIssues.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.github/workflows/auto-merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/README.md -------------------------------------------------------------------------------- /app-auth/RegisterAppForAppOnlyAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/RegisterAppForAppOnlyAuth.ps1 -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/graphapponlytutorial/.env.example -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/GraphHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/graphapponlytutorial/GraphHelper.php -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/graphapponlytutorial/composer.json -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/graphapponlytutorial/composer.lock -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/graphapponlytutorial/main.php -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/app-auth/graphapponlytutorial/phpstan.neon -------------------------------------------------------------------------------- /qs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/qs.json -------------------------------------------------------------------------------- /user-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/README.md -------------------------------------------------------------------------------- /user-auth/RegisterAppForUserAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/RegisterAppForUserAuth.ps1 -------------------------------------------------------------------------------- /user-auth/graphtutorial/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/graphtutorial/.env.example -------------------------------------------------------------------------------- /user-auth/graphtutorial/DeviceCodeTokenProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/graphtutorial/DeviceCodeTokenProvider.php -------------------------------------------------------------------------------- /user-auth/graphtutorial/GraphHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/graphtutorial/GraphHelper.php -------------------------------------------------------------------------------- /user-auth/graphtutorial/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/graphtutorial/composer.json -------------------------------------------------------------------------------- /user-auth/graphtutorial/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/graphtutorial/composer.lock -------------------------------------------------------------------------------- /user-auth/graphtutorial/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/graphtutorial/main.php -------------------------------------------------------------------------------- /user-auth/graphtutorial/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-php/HEAD/user-auth/graphtutorial/phpstan.neon -------------------------------------------------------------------------------- /user-auth/version: -------------------------------------------------------------------------------- 1 | 1.2 2 | --------------------------------------------------------------------------------