├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Contracts └── TelegramSenderContract.php ├── Enums ├── FileType.php └── ParseMode.php ├── Exceptions └── CouldNotSendNotification.php ├── Telegram.php ├── TelegramBase.php ├── TelegramChannel.php ├── TelegramContact.php ├── TelegramFile.php ├── TelegramLocation.php ├── TelegramMessage.php ├── TelegramPoll.php ├── TelegramServiceProvider.php ├── TelegramUpdates.php ├── TelegramVenue.php └── Traits └── HasSharedLogic.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/composer.json -------------------------------------------------------------------------------- /src/Contracts/TelegramSenderContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/Contracts/TelegramSenderContract.php -------------------------------------------------------------------------------- /src/Enums/FileType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/Enums/FileType.php -------------------------------------------------------------------------------- /src/Enums/ParseMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/Enums/ParseMode.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotSendNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/Exceptions/CouldNotSendNotification.php -------------------------------------------------------------------------------- /src/Telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/Telegram.php -------------------------------------------------------------------------------- /src/TelegramBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramBase.php -------------------------------------------------------------------------------- /src/TelegramChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramChannel.php -------------------------------------------------------------------------------- /src/TelegramContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramContact.php -------------------------------------------------------------------------------- /src/TelegramFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramFile.php -------------------------------------------------------------------------------- /src/TelegramLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramLocation.php -------------------------------------------------------------------------------- /src/TelegramMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramMessage.php -------------------------------------------------------------------------------- /src/TelegramPoll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramPoll.php -------------------------------------------------------------------------------- /src/TelegramServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramServiceProvider.php -------------------------------------------------------------------------------- /src/TelegramUpdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramUpdates.php -------------------------------------------------------------------------------- /src/TelegramVenue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/TelegramVenue.php -------------------------------------------------------------------------------- /src/Traits/HasSharedLogic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-notification-channels/telegram/HEAD/src/Traits/HasSharedLogic.php --------------------------------------------------------------------------------