├── .editorconfig ├── .github └── workflows │ ├── php-cs.yml │ └── tests.yml ├── .php_cs.dist.php ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── google-chat.php └── src ├── Card.php ├── Components └── Button │ ├── AbstractButton.php │ ├── ImageButton.php │ └── TextButton.php ├── Concerns └── ValidatesCardComponents.php ├── Enums ├── Icon.php └── ImageStyle.php ├── Exceptions └── CouldNotSendNotification.php ├── GoogleChatChannel.php ├── GoogleChatMessage.php ├── GoogleChatServiceProvider.php ├── Section.php └── Widgets ├── AbstractWidget.php ├── Buttons.php ├── Image.php ├── KeyValue.php └── TextParagraph.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/.github/workflows/php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/composer.json -------------------------------------------------------------------------------- /config/google-chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/config/google-chat.php -------------------------------------------------------------------------------- /src/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Card.php -------------------------------------------------------------------------------- /src/Components/Button/AbstractButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Components/Button/AbstractButton.php -------------------------------------------------------------------------------- /src/Components/Button/ImageButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Components/Button/ImageButton.php -------------------------------------------------------------------------------- /src/Components/Button/TextButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Components/Button/TextButton.php -------------------------------------------------------------------------------- /src/Concerns/ValidatesCardComponents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Concerns/ValidatesCardComponents.php -------------------------------------------------------------------------------- /src/Enums/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Enums/Icon.php -------------------------------------------------------------------------------- /src/Enums/ImageStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Enums/ImageStyle.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotSendNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Exceptions/CouldNotSendNotification.php -------------------------------------------------------------------------------- /src/GoogleChatChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/GoogleChatChannel.php -------------------------------------------------------------------------------- /src/GoogleChatMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/GoogleChatMessage.php -------------------------------------------------------------------------------- /src/GoogleChatServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/GoogleChatServiceProvider.php -------------------------------------------------------------------------------- /src/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Section.php -------------------------------------------------------------------------------- /src/Widgets/AbstractWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Widgets/AbstractWidget.php -------------------------------------------------------------------------------- /src/Widgets/Buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Widgets/Buttons.php -------------------------------------------------------------------------------- /src/Widgets/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Widgets/Image.php -------------------------------------------------------------------------------- /src/Widgets/KeyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Widgets/KeyValue.php -------------------------------------------------------------------------------- /src/Widgets/TextParagraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/google-chat/HEAD/src/Widgets/TextParagraph.php --------------------------------------------------------------------------------