2017 © Pedro Peláez
 

library instapush-laravel

image

abbasadel/instapush-laravel

  • Monday, February 16, 2015
  • by abbasadel
  • Repository
  • 1 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

InstaPush Wrapper for Laravel

InstaPush for Laravel gives Immediate Notifications for the transactions you care about in your Laravel PHP applications., (*1)

How to Install

  1. Install the abbasadel/instapush-laravel package, (*2)

    $ composer require "abbasadel/instapush-laravel:dev-master"
    
  2. Update app/config/app.php to configure your Instapush Account, (*3)

    # Add `InstapushServiceProvider` to the `providers` array
    'providers' => array(
        ...
        'Pushbots\Instapush\InstapushServiceProvider',
    )
    
    # Add the `Insta` Facade to the `aliases` array
    'aliases' => array(
        ...
        'Insta' => 'Pushbots\Instapush\Facades\Insta',
    )
    

Configuration

  1. Generate a template Instapush config file, (*4)

    $ php artisan config:publish abbasadel/instapush-laravel
    
  2. Update app/config/packages/abbasadel/instapush-laravel/config.php with your Instapush appID and appSecret key:, (*5)

    return array(
        'appId' => 'APP_ID',
        'appSecret' => 'APP_SECRET',
    );
    

Usage

```php
    Insta::Push("EventName", ['tacker1'=>'value1', 'tacker2'=>'value2']);
 ```

Reporting Bugs or Feature Requests

Please report any bugs or feature requests on the github issues page for this project here:, (*6)

https://github.com/abbasadel/instapush-laravel/issues, (*7)

License

The InstaPush Laravel is free software released under the GPLv2 License. See LICENSE.txt for details., (*8)

The Versions

16/02 2015

dev-master

9999999-dev

  Sources   Download

The Requires

 

by Abbas Adel