8000 minor #37963 Update Notifier bridge DSN in readme (jeremyFreeAgent) · symfony/symfony@2c14c5f · GitHub
[go: up one dir, main page]

Skip to content

Commit 2c14c5f

Browse files
committed
minor #37963 Update Notifier bridge DSN in readme (jeremyFreeAgent)
This PR was merged into the 5.0 branch. Discussion ---------- Update Notifier bridge DSN in readme | Q | A | ------------- | --- | Branch? | 5.0 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | Add missing DSN documentation in README for 5.0 Commits ------- a404d05 Update Notifier bridge DSN in readme
2 parents 80e38d2 + a404d05 commit 2c14c5f

File tree

4 files changed

+50
-0
lines changed

4 files changed

+50
-0
lines changed

src/Symfony/Component/Notifier/Bridge/Nexmo/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ Nexmo Notifier
33

44
Provides Nexmo integration for Symfony Notifier.
55

6+
DSN example
7+
-----------
8+
9+
```
10+
// .env file
11+
NEXMO_DSN=nexmo://API_KEY:API_SECRET@default?from=FROM
12+
```
13+
14+
where:
15+
- `API_KEY` is your Nexmo API key
16+
- `API_SECRET` is your Nexmo API secret
17+
- `FROM` is the sender
18+
619
Resources
720
---------
821

src/Symfony/Component/Notifier/Bridge/Slack/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ Slack Notifier
33

44
Provides Slack integration for Symfony Notifier.
55

6+
DSN example
7+
-----------
8+
9+
```
10+
// .env file
11+
SLACK_DSN=slack://ACCESS_TOKEN@default?channel=CHANNEL
12+
```
13+
14+
where:
15+
- `ACCESS_TOKEN` is your Slack access token
16+
- `CHANNEL` is the Slack channel
17+
618
Resources
719
---------
820

src/Symfony/Component/Notifier/Bridge/Telegram/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ Telegram Notifier
33

44
Provides Telegram integration for Symfony Notifier.
55

6+
DSN example
7+
-----------
8+
9+
```
10+
// .env file
11+
TELEGRAM_DSN=telegram://TOKEN@default?channel=CHANNEL
12+
```
13+
14+
where:
15+
- `TOKEN` is your Telegram token
16+
- `CHANNEL` is the Slack channel
17+
618
Resources
719
---------
820

src/Symfony/Component/Notifier/Bridge/Twilio/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ Twilio Notifier
33

44
Provides Twilio integration for Symfony Notifier.
55

6+
DSN example
7+
-----------
8+
9+
```
10+
// .env file
11+
TWILIO_DSN=twilio://ACCOUNT_SID:AUTH_TOKEN@default?from=FROM
12+
```
13+
14+
where:
15+
- `ACCOUNT_SID` is your Twilio account SID
16+
- `AUTH_TOKEN` is your Twilio auth token
17+
- `FROM` is the sender
18+
619
Resources
720
---------
821

0 commit comments

Comments
 (0)
2A21
0