pusher / pusher-push-notifications
Installs: 180 945
Dependents: 6
Suggesters: 0
Security: 0
Stars: 16
Watchers: 5
Forks: 12
Open Issues: 0
Requires
- php: >=5.6.0
- firebase/php-jwt: ^5.0
- guzzlehttp/guzzle: ~6.0 || ~7.0
Requires (Dev)
- doctrine/instantiator: 1.0.5
- phpunit/phpunit: ~5.7.0
- symfony/yaml: ~3.0
README
PHP SDK for Pusher Beams
PHP server library for publishing notifications through Pusher Beams.
Check https://docs.pusher.com/beams/reference/server-sdk-php for more information.
NOTE: This library requires a PHP version of 5.6 or greater
Installation
Get Composer,
then get the pusher/pusher-push-notifications
Composer package:
$ composer require pusher/pusher-push-notifications
This SDK depends on the JSON PHP module.
Use
Configuring the SDK for your instance
<?php require __DIR__ . '/vendor/autoload.php'; $pushNotifications = new \Pusher\PushNotifications\PushNotifications(array( "instanceId" => "YOUR_INSTANCE_ID_HERE", "secretKey" => "YOUR_SECRET_HERE", ));
Publishing to Device Interests
You can broadcast notifications to groups of subscribed devices using Device Interests:
$publishResponse = $pushNotifications->publishToInterests( ["donuts"], [ "apns" => [ "aps" => [ "alert" => "Hello!", ], ], "fcm" => [ "notification" => [ "title" => "Hello!", "body" => "Hello, world!", ], ], ] ); echo("Published with Publish ID: " . $publishResponse->publishId . "\n");
Publishing to Authenticated Users
Securely send notifications to individual users of your application using Authenticated Users:
$publishResponse = $pushNotifications->publishToUsers( ["user-0001"], [ "apns" => [ "aps" => [ "alert" => "Hello!", ], ], "fcm" => [ "notification" => [ "title" => "Hello!", "body" => "Hello, world!", ], ], ] ); echo("Published with Publish ID: " . $publishResponse->publishId . "\n");