2017 © Pedro Peláez
 

symfony-bundle pushbullet-bundle

This bundle provides integration with the Pushbullet API library, allowing you to interact with the Pushbullet API from within your Symfony projects

image

stefanbraspenning/pushbullet-bundle

This bundle provides integration with the Pushbullet API library, allowing you to interact with the Pushbullet API from within your Symfony projects

  • Sunday, June 14, 2015
  • by stefanbraspenning
  • Repository
  • 2 Watchers
  • 1 Stars
  • 75 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 1 % Grown

The README.md

PushbulletBundle Software License

Latest Version, (*1)

Installation

Step 1) Get the bundle

composer require stefanbraspenning/pushbullet-bundle

Step 2) Register the bundle

To start using the bundle, register it in your Kernel., (*2)

``` php <?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new SB\Bundle\PushbulletBundle\SBPushbulletBundle(), // ... ); }, (*3)


## Step 3) Configure the default API token to use (optional) If you don't have an API token yet, follow this link: [https://www.pushbullet.com/account](https://www.pushbullet.com/account). It takes you to the Pushbullet site which (if you are logged in, then scroll down) lets you generate an API token for your account. The bundle tries to make sending payloads to Pushbullet a little easier by letting you define the API token to use beforehand. **NOTE:** Setting the token beforehand is not required; you can still choose to leave the configuration empty and pass the API token of your choice when sending a payload: `$pb = new Pushbullet\Pushbullet('YOUR_ACCESS_TOKEN');`. Here is an example: ```yaml # app/config/config.yml sb_pushbullet: api_token: 1234 # replace with your own (see: https://www.pushbullet.com/account)

Documentation

Detailed documentation on how to access each API method can be found in the documentation of the package that this bundle integrates: Pushbullet API library, (*4)

The Versions

14/06 2015

dev-master

9999999-dev

This bundle provides integration with the Pushbullet API library, allowing you to interact with the Pushbullet API from within your Symfony projects

  Sources   Download

MIT

The Requires

 

The Development Requires

api bundle symfony pushbullet