1. Go to this page and download the library: Download amrikasir/firebasecmclient 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/ */
$notification = new FirebaseCM(
//this is key from server Firebase Cloud Messaging Console
//and this is new Server key
"SERVER_KEY_FROM_FCM_CONSOLE"
//old legacy server key
//"OR_LEGACY_SERVER_KEY"
);
echo $notification->send(
//This is token from client (Android / iOS)
//You can store this token in mysql server or other dbms
array(
'REGISTRATION_TOKEN',
'OTHER_REGISTRATION_TOKEN'
),
$push->getPush()
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.