pushbots/instapush-php

There is no license information available for the latest version (dev-master) of this package.

Instapush PHP Wrapper

Maintainers

Package info

github.com/pushbots/Instapush-php

pkg:composer/pushbots/instapush-php

Statistics

Installs: 1 835

Dependents: 0

Suggesters: 0

Stars: 20

Open Issues: 3

dev-master 2014-02-12 01:39 UTC

This package is not auto-updated.

Last update: 2026-03-24 13:06:30 UTC


README

The [Instapush PHP Wrapper] (http://www.instapush.im/) is a PHP wrapper for Instapush API.

Instapush allows you to recieve push notifications about any trasnaction you care about in your web app immediatly using events based approach.

This wrapper makes async request hence will minimally affect application speed (if any).

Usage

The minimal you'll need to have is:

require("lib/instapush.php");
$ip = InstaPush::getInstance("APPLICATION_ID", "APPLICATION_SECRET");
$ip->track("signup", array( 
 		"email"=> "test@ss.cc"
));