2017 © Pedro Peláez
 

library gcm-application-server

Google Cloud Messaging Application Server port from JAVA to PHP

image

webpower/gcm-application-server

Google Cloud Messaging Application Server port from JAVA to PHP

  • Tuesday, July 28, 2015
  • by christiaan
  • Repository
  • 2 Watchers
  • 6 Stars
  • 526 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 4 Versions
  • 1 % Grown

The README.md

GCMApplicationServer

Build Status Scrutinizer Quality Score, (*1)

This is a port to PHP of the official com.google.android.gcm.server JAVA package., (*2)

Usage

$sender = new \WebPower\gcm\server\Sender('your google cloud messaging api key');
$message = \WebPower\gcm\server\Message::builder()
    ->addData('message', 'Hoi')
    ->build();
// Send to a single device using text/plain
$result = $sender->singleSendNoRetry($message, 'registration id');
// or to multiple devices using application/json
$result = $sender->sendNoRetry($message, array('registration id', 'another registration id'));
echo $result; // all value objects support __toString just like the Java code

The Api key can be generated at the apis console, (*3)

Registration ids are obtained by the Android App when it registers itself on the GCM service. It should be forwarded to your PHP code., (*4)

Installation

composer.phar require webpower/gcm-application-server

The Versions

28/07 2015

dev-master

9999999-dev

Google Cloud Messaging Application Server port from JAVA to PHP

  Sources   Download

Apache License v2.0

The Requires

 

The Development Requires

by Christaan Baartse

push gcm java port

28/07 2015

1.0.4

1.0.4.0

Google Cloud Messaging Application Server port from JAVA to PHP

  Sources   Download

Apache License v2.0

The Requires

 

The Development Requires

by Christaan Baartse

push gcm java port

19/11 2014

1.0.3

1.0.3.0

Google Cloud Messaging Application Server port from JAVA to PHP

  Sources   Download

Apache License v2.0

The Requires

 

The Development Requires

by Christaan Baartse

push gcm java port

26/02 2013

1.0.2

1.0.2.0

Google Cloud Messaging Application Server port from JAVA to PHP

  Sources   Download

Apache License v2.0

The Requires

 

The Development Requires

by Christaan Baartse

push gcm java port