├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Contracts └── AccessTokenInterface.php ├── Credentials ├── DefaultCredential.php └── EasyWechatCredential.php ├── Exceptions ├── AccessTokenException.php ├── Exception.php └── SendTemplateMessageException.php ├── Wechat.php ├── WechatChannel.php ├── WechatMessage.php └── WechatServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/composer.json -------------------------------------------------------------------------------- /src/Contracts/AccessTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/Contracts/AccessTokenInterface.php -------------------------------------------------------------------------------- /src/Credentials/DefaultCredential.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/Credentials/DefaultCredential.php -------------------------------------------------------------------------------- /src/Credentials/EasyWechatCredential.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/Credentials/EasyWechatCredential.php -------------------------------------------------------------------------------- /src/Exceptions/AccessTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/Exceptions/AccessTokenException.php -------------------------------------------------------------------------------- /src/Exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/Exceptions/Exception.php -------------------------------------------------------------------------------- /src/Exceptions/SendTemplateMessageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/Exceptions/SendTemplateMessageException.php -------------------------------------------------------------------------------- /src/Wechat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/Wechat.php -------------------------------------------------------------------------------- /src/WechatChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/WechatChannel.php -------------------------------------------------------------------------------- /src/WechatMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/WechatMessage.php -------------------------------------------------------------------------------- /src/WechatServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansongda/laravel-notification-wechat/HEAD/src/WechatServiceProvider.php --------------------------------------------------------------------------------