├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── run-tests.yml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── UPGRADE.md ├── composer.json └── src ├── Actions └── ActionOpenUrl.php ├── ContentBlocks ├── Fact.php ├── FactSet.php ├── Icon.php └── TextBlock.php ├── Exceptions └── CouldNotSendNotification.php ├── MicrosoftTeams.php ├── MicrosoftTeamsAdaptiveCard.php ├── MicrosoftTeamsChannel.php └── MicrosoftTeamsServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/composer.json -------------------------------------------------------------------------------- /src/Actions/ActionOpenUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/Actions/ActionOpenUrl.php -------------------------------------------------------------------------------- /src/ContentBlocks/Fact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/ContentBlocks/Fact.php -------------------------------------------------------------------------------- /src/ContentBlocks/FactSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/ContentBlocks/FactSet.php -------------------------------------------------------------------------------- /src/ContentBlocks/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/ContentBlocks/Icon.php -------------------------------------------------------------------------------- /src/ContentBlocks/TextBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/ContentBlocks/TextBlock.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotSendNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/Exceptions/CouldNotSendNotification.php -------------------------------------------------------------------------------- /src/MicrosoftTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/MicrosoftTeams.php -------------------------------------------------------------------------------- /src/MicrosoftTeamsAdaptiveCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/MicrosoftTeamsAdaptiveCard.php -------------------------------------------------------------------------------- /src/MicrosoftTeamsChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/MicrosoftTeamsChannel.php -------------------------------------------------------------------------------- /src/MicrosoftTeamsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/microsoft-teams/HEAD/src/MicrosoftTeamsServiceProvider.php --------------------------------------------------------------------------------