komicho/firebase

There is no license information available for the latest version (V1.0.0) of this package.

Send notifications through firebase using php

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

pkg:composer/komicho/firebase

V1.0.0 2017-08-21 09:49 UTC

This package is not auto-updated.

Last update: 2025-09-28 09:19:41 UTC


README

You can send notifications with ease

Install via composer

Add orm to composer.json configuration file.

$ composer require komicho/firebase

And update the composer

$ composer update

code

require 'vendor/autoload.php';

use komicho\firebase;

$firebase = new firebase('api_access_key');

echo $firebase
    ->to('Token')
    ->notification([
        'title' => 'kom',
        'body' => 'komicho :)'
    ])
    ->data([ ... ])
    ->send();

"# firebase"