A Simple PHP Library for sending FCM (Firebase Cloud Messages)
PHP
>= 7.0Composer
as package manager
composer require nasrul21/php-fcm-client
<?php
// load composer
require 'vendor/autoload.php';
// set api key
$apiKey = "..." // your fcm api key
// initialize FCMClient with apiKey as params
$fcm = new FCMClient($apiKey);
$registration_ids = ["...", "..."];
$title = "Hello!";
$body = "This is the body";
// send fcm notifications
$fcm->send($registration_ids, $title, $body);