moskalyovd / fcm-bundle
Symfony bundle for Firebase Cloud Messaging
Installs: 32 598
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: >= 5.3
- guzzlehttp/guzzle: ^6.2
- paragraph1/php-fcm: ^0.7.0
This package is not auto-updated.
Last update: 2025-04-02 07:05:23 UTC
README
Symfony bundle for Firebase Cloud Messaging
Installation
To use this bundle in your project add following lines to your composer.json
:
"require": { "moskalyovd/fcm-bundle": "^0.2" }
and enable it in your AppKernel.php
:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( new Moskalyovd\FCMBundle\MoskalyovdFCMBundle(), ); }
Configuration
moskalyovd_fcm: server_key: 'your_server_key'
Usage
<?php public function testAction() { $client = $this->get('moskalyovd_fcm.client'); $message = new Message(); $message->addRecipient(new Device('token')); $message->setNotification(new Notification('Title', 'Body')); $response = $client->send($message); }
For more information please reffer to php-fcm library