arabcoders / notification
通知抽象层
v1.0.0
2016-06-26 17:51 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2024-09-23 07:22:46 UTC
README
这是一个基础的通知管理器,它通过通用接口抽象化所有提供者的差异。
安装
通过 Composer
$ composer require arabcoders/notification
使用示例。
<?php require __DIR__ . '/../../autoload.php'; $provider = new \arabcoders\notification\Providers\PushOver(); $provider->setKey('key'); $notification = new arabcoders\notification\Notification( $provider ); $notification->setTokens( [ 'token here' ] ) ->setTitle( 'title' ) ->setMessage( 'message' ) ->send();