arabcoders / notification
Notification Abstract Layer
Installs: 53
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
pkg:composer/arabcoders/notification
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2025-09-23 09:20:15 UTC
README
A Base Notification Manager that abstract away all the providers differences under common Interface.
Install
Via Composer
$ composer require arabcoders/notification
Usage Example.
<?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();