kurozumi/line-notifier

Symfony Line Notifier Bridge

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-notifier-bridge

v6.1.0 2022-09-06 05:35 UTC

This package is auto-updated.

Last update: 2024-05-06 16:07:15 UTC


README

Provides LINE Notify integration for Symfony Notifier.

DSN example

LINE_DSN=line://TOKEN@default

Install

composer req kurozumi/line-notifier

Setting

# notifier.yaml
framework:
    notifier:
        chatter_transports: 
           line: '%env(LINE_DSN)%'
# .env
LINE_DSN=line://TOKEN@default
# services.yaml
services:
  Kurozumi\Notifier\Bridge\Line\LineTransportFactory:
    parent: notifier.transport_factory.abstract
    tags: ['chatter.transport_factory']