Skip to content

Releases: gomoob/php-pushwoosh

0.1.0-alpha2

16 Jun 15:08
Compare
Choose a tag to compare

WARNING : This is an alpha release, so use it at your own risks !

  • Second alpha release
  • Add a Contributing section in the README.md file
  • Improve documentation
  • Add a develop branch to the project
  • Add several missing methods to the Gomoob\Pushwoosh\Model\Notification\Notification class
  • Add a Gomoob\Pushwoosh\Model\Notification\NotificationTest unit test class
  • Prepare test cases for not implemented request objects
  • Allow to attach data parameters to notifications :
$notification = Notification::create()
    -> setContent('Hello World !')
    -> setDataParameter('parameter_1', 'parameter_1_value')
    -> setDataParameter('parameter_2', 'parameter_2_value');
  • Allow to send notifications to specific devices :
$notification = Notification::create() 
  -> setContent('Hello World !')
  -> addDevice('DEVICE_TOKEN_1')
  -> addDevice('DEVICE_TOKEN_2')
  -> addDevice('DEVICE_TOKEN_3');

0.1.0-alpha1

26 May 06:14
Compare
Choose a tag to compare

WARNING : This is an alpha release, so use it at your own risks !

This release is the first one, it implements the following Pushwoosh REST Web Services :

You can define the composer dependency in your PHP project using the following :

{
    "require": {
        "gomoob/php-pushwoosh": "0.1.*@alpha"
    },
}