Skip to content

Commit 6cade62

Browse files
committed
docs(README): Update notification channels and descriptions
- Correct description formatting in README and composer.json - Clarify notification channels by removing unnecessary words - Update headings for better understanding - Enhance clarity regarding channel authentication and customization
1 parent 4800ad4 commit 6cade62

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

README.md

+8-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# laravel-exception-notify
22

3-
> Monitor exception and report it to notification channels(Dump、Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、Zulip).
3+
> Monitor exception and report to the notification channels(Dump、Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、Zulip).
44
55
[![tests](https://github.com/guanguans/laravel-exception-notify/workflows/tests/badge.svg)](https://github.com/guanguans/laravel-exception-notify/actions)
66
[![check & fix styling](https://github.com/guanguans/laravel-exception-notify/workflows/check%20&%20fix%20styling/badge.svg)](https://github.com/guanguans/laravel-exception-notify/actions)
@@ -10,14 +10,6 @@
1010
[![Total Downloads](https://poser.pugx.org/guanguans/laravel-exception-notify/downloads)](https://packagist.org/packages/guanguans/laravel-exception-notify)
1111
[![License](https://poser.pugx.org/guanguans/laravel-exception-notify/license)](https://packagist.org/packages/guanguans/laravel-exception-notify)
1212

13-
## Features
14-
15-
* Monitor exception and report it to notification channels
16-
* Support for extending customized channels
17-
* Support for notification rate limiting
18-
* Support for customized data pipe
19-
* Support for customized data collector
20-
2113
## Related Links
2214

2315
* [https://github.com/guanguans/notify](https://github.com/guanguans/notify)
@@ -41,25 +33,25 @@ composer require guanguans/laravel-exception-notify --ansi -v
4133
php artisan vendor:publish --provider="Guanguans\\LaravelExceptionNotify\\ExceptionNotifyServiceProvider" --ansi -v
4234
```
4335

44-
### Apply for channel authentication and other information
36+
### Apply for channel authentication information
4537

46-
* [Notify](https://github.com/guanguans/notify#platform-support)
47-
* Dump(For debugging exception messages)
38+
* [Notify(30+)](https://github.com/guanguans/notify)
39+
* Dump(for debugging exception report)
4840
* Log
4941
* Mail
5042

5143
### Configure channels in the `config/exception-notify.php` and `.env` file
5244

5345
```dotenv
54-
# EXCEPTION_NOTIFY_STACK_CHANNELS=dingTalk,lark,mail,slack,telegram,...
46+
EXCEPTION_NOTIFY_CHANNEL=stack
5547
EXCEPTION_NOTIFY_STACK_CHANNELS=log,slack,weWork
5648
EXCEPTION_NOTIFY_SLACK_WEBHOOK=https://hooks.slack.com/services/TPU9A9/B038KNUC0GY/6pKH3vfa3mjlUPcgLSjzR
5749
EXCEPTION_NOTIFY_WEWORK_TOKEN=73a3d5a3-ceff-4da8-bcf3-ff5891778
5850
```
5951

6052
## Usage
6153

62-
### Test for exception notify
54+
### Testing for exception notify
6355

6456
```shell
6557
php artisan exception-notify:test --ansi -v
@@ -93,7 +85,7 @@ public function boot(): void
9385
}
9486
```
9587

96-
### Custom channel
88+
### Extend channel
9789

9890
Modify the `boot` method in the `app/Providers/AppServiceProvider.php` file
9991

@@ -107,7 +99,7 @@ use Illuminate\Container\Container;
10799
public function boot(): void
108100
{
109101
ExceptionNotify::extend('YourChannelName', function (Container $container): ChannelContract {
110-
return 'Instance of the `\Guanguans\LaravelExceptionNotify\Contracts\Channel`.';
102+
return 'Instance of the `Guanguans\LaravelExceptionNotify\Contracts\ChannelContract`.';
111103
});
112104
}
113105
```

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "guanguans/laravel-exception-notify",
3-
"description": "Monitor exception and report it to notification channels(Dump、Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、Zulip).",
3+
"description": "Monitor exception and report to the notification channels(Dump、Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、Zulip).",
44
"license": "MIT",
55
"type": "library",
66
"keywords": [

0 commit comments

Comments
 (0)