├── .env.example ├── .gitignore ├── .php-cs-fixer.php ├── LICENSE ├── README.md ├── composer.json ├── phpstan.neon.dist ├── phpunit.xml ├── publish └── message.php ├── src ├── Channel │ ├── AbstractChannel.php │ ├── DingTalkChannel.php │ ├── FeiShuChannel.php │ ├── MailChannel.php │ └── WechatChannel.php ├── Client.php ├── ConfigProvider.php ├── Contracts │ └── MessageNotifyInterface.php ├── Exceptions │ └── MessageNotificationException.php ├── Notify.php └── Template │ ├── AbstractTemplate.php │ ├── Markdown.php │ └── Text.php └── test ├── MailChannelTest.php ├── NotifyTest.php └── bootstrap.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/phpunit.xml -------------------------------------------------------------------------------- /publish/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/publish/message.php -------------------------------------------------------------------------------- /src/Channel/AbstractChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Channel/AbstractChannel.php -------------------------------------------------------------------------------- /src/Channel/DingTalkChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Channel/DingTalkChannel.php -------------------------------------------------------------------------------- /src/Channel/FeiShuChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Channel/FeiShuChannel.php -------------------------------------------------------------------------------- /src/Channel/MailChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Channel/MailChannel.php -------------------------------------------------------------------------------- /src/Channel/WechatChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Channel/WechatChannel.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Contracts/MessageNotifyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Contracts/MessageNotifyInterface.php -------------------------------------------------------------------------------- /src/Exceptions/MessageNotificationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Exceptions/MessageNotificationException.php -------------------------------------------------------------------------------- /src/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Notify.php -------------------------------------------------------------------------------- /src/Template/AbstractTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Template/AbstractTemplate.php -------------------------------------------------------------------------------- /src/Template/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Template/Markdown.php -------------------------------------------------------------------------------- /src/Template/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/src/Template/Text.php -------------------------------------------------------------------------------- /test/MailChannelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/test/MailChannelTest.php -------------------------------------------------------------------------------- /test/NotifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/test/NotifyTest.php -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VinchanGit/message-notify/HEAD/test/bootstrap.php --------------------------------------------------------------------------------