First sample, creating a Pushwoosh message
<?php
// Create a Pushwoosh client
$pushwoosh = Pushwoosh::create()
->setApplication('XXXX-XXX')
->setAuth('xxxxxxxx');
// Create a request for the '/createMessage' Web Service
$request = CreateMessageRequest::create()
->addNotification(Notification::create()->setContent('Hello Jean !'));
// Call the REST Web Service
$response = $pushwoosh->createMessage($request);
// Check if its ok
if($response->isOk()) {
print 'Great, my message has been sent !';
} else {
print 'Oups, the sent failed :-(';
print 'Status code : ' . $response->getStatusCode();
print 'Status message : ' . $response->getStatusMessage();
}
?>
Installation
The easiest way to install the library is to use composer and define the following dependency inside your composer.json file :
{
"require": {
"gomoob/php-pushwoosh": "~1.0"
}
}
Documentation
- General concepts
- Pushwoosh client methods
- API Reference
- Release History
- Contribute
Framework Integrations
- Laravel - Laravel-Pushwoosh.
- Symfony 2 - pushwoosh-bundle.
If you have integrated php-pushwoosh into a popular PHP framework let us know !
About Gomoob
At Gomoob we build high quality software with awesome Open Source frameworks everyday. Would you like to start your next project with us? That's great! Give us a call or send us an email and we will get back to you as soon as possible !
You can contact us by email at contact@gomoob.com or by phone number (+33)6 85 12 81 26 or (+33) 6 28 35 04 49.