├── Action ├── ActionCard.php ├── ActionCardCompatibleActionInterface.php ├── ActionInterface.php ├── Element │ └── Header.php ├── HttpPostAction.php ├── Input │ ├── AbstractInput.php │ ├── DateInput.php │ ├── InputInterface.php │ ├── MultiChoiceInput.php │ └── TextInput.php ├── InvokeAddInCommandAction.php └── OpenUriAction.php ├── CHANGELOG.md ├── LICENSE ├── MicrosoftTeamsOptions.php ├── MicrosoftTeamsTransport.php ├── MicrosoftTeamsTransportFactory.php ├── README.md ├── Section ├── Field │ ├── Activity.php │ ├── Fact.php │ └── Image.php ├── Section.php └── SectionInterface.php ├── Test └── Action │ └── Input │ └── AbstractInputTestCase.php └── composer.json /Action/ActionCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/ActionCard.php -------------------------------------------------------------------------------- /Action/ActionCardCompatibleActionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/ActionCardCompatibleActionInterface.php -------------------------------------------------------------------------------- /Action/ActionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/ActionInterface.php -------------------------------------------------------------------------------- /Action/Element/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/Element/Header.php -------------------------------------------------------------------------------- /Action/HttpPostAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/HttpPostAction.php -------------------------------------------------------------------------------- /Action/Input/AbstractInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/Input/AbstractInput.php -------------------------------------------------------------------------------- /Action/Input/DateInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/Input/DateInput.php -------------------------------------------------------------------------------- /Action/Input/InputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/Input/InputInterface.php -------------------------------------------------------------------------------- /Action/Input/MultiChoiceInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/Input/MultiChoiceInput.php -------------------------------------------------------------------------------- /Action/Input/TextInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/Input/TextInput.php -------------------------------------------------------------------------------- /Action/InvokeAddInCommandAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/InvokeAddInCommandAction.php -------------------------------------------------------------------------------- /Action/OpenUriAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Action/OpenUriAction.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/LICENSE -------------------------------------------------------------------------------- /MicrosoftTeamsOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/MicrosoftTeamsOptions.php -------------------------------------------------------------------------------- /MicrosoftTeamsTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/MicrosoftTeamsTransport.php -------------------------------------------------------------------------------- /MicrosoftTeamsTransportFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/MicrosoftTeamsTransportFactory.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/README.md -------------------------------------------------------------------------------- /Section/Field/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Section/Field/Activity.php -------------------------------------------------------------------------------- /Section/Field/Fact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Section/Field/Fact.php -------------------------------------------------------------------------------- /Section/Field/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Section/Field/Image.php -------------------------------------------------------------------------------- /Section/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Section/Section.php -------------------------------------------------------------------------------- /Section/SectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Section/SectionInterface.php -------------------------------------------------------------------------------- /Test/Action/Input/AbstractInputTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/Test/Action/Input/AbstractInputTestCase.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/microsoft-teams-notifier/HEAD/composer.json --------------------------------------------------------------------------------