maximerenou / php-fcm
A library for sending Firebase cloud messages and managing user topic subscriptions, device groups and devices.
1.0.2
2019-05-16 12:00 UTC
Requires
- php: >= 7.0
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^6.5
- satooshi/php-coveralls: ^2.0
This package is auto-updated.
Last update: 2024-11-16 23:50:43 UTC
README
A PHP library for sending Firebase Cloud Messages and managing user topic subscriptions, device groups and devices.
Installation
Installation with composer:
composer require maximerenou/php-fcm
About this fork
Sound support.
Quickstart
// Instantiate the client with the project api_token and sender_id. $client = new \Fcm\FcmClient($apiToken, $senderId); // Instantiate the push notification request object. $notification = new \Fcm\Push\Notification(); // Enhance the notification object with our custom options. $notification ->addRecipient($deviceId) ->setTitle('Hello from php-fcm!') ->setBody('Notification body') ->setSound('custom_sound') ->addData('key', 'value'); // Send the notification to the Firebase servers for further handling. $client->send($notification);
Full documentation
Read the documentation here or look in the docs directory.
Tests
Run the unit tests with PHPUnit:
vendor/bin/phpunit -c phpunit.dist.xml