PHP code example of symfony / mercure-notifier
1. Go to this page and download the library: Download symfony/mercure-notifier library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
symfony / mercure-notifier example snippets
use Symfony\Component\Notifier\Message\ChatMessage;
use Symfony\Component\Notifier\Bridge\Mercure\MercureOptions;
$chatMessage = new ChatMessage('Contribute To Symfony');
$options = new MercureOptions(
['/topic/1', '/topic/2'],
true,
'id',
'type',
1,
['tag' => '1234', 'body' => 'TEST']
);
// Add the custom options to the chat message and send the message
$chatMessage->options($options);
$chatter->send($chatMessage);