Php-pushwoosh alternatives and similar libraries
Based on the "Notifications" category.
Alternatively, view Php-pushwoosh alternatives based on common mentions on social networks and blogs.
-
Notification Pusher
Standalone PHP library for easy devices notifications push. -
JoliNotif
:computer: Send notifications to your desktop directly from your PHP script -
Notificator
A very lightweight library to handle notifications the smart way. -
Notificato
Takes care of Apple push notifications (APNS) in your PHP projects. -
Real-Time monitoring package for Laravel
Connect your Laravel application to Inspector. -
Authy Notification Channel for Laravel
@Authy notification channel for @Laravel, with the ability to send in-app, sms, and call verification tokens.
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Php-pushwoosh or a related project?
README
php-pushwoosh
A PHP Library to easily send push notifications with the Pushwoosh REST Web Services.
First sample, creating a Pushwoosh message
// 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();
}
Easy, isn't it ?
Documentation
Framework Integrations
- Laravel - https://github.com/schimpanz/Laravel-Pushwoosh
- Symfony 2 - https://github.com/Prezent/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 [email protected] or by phone number [(+33) 6 85 12 81 26](tel:+33685128126) or [(+33) 6 28 35 04 49](tel:+33685128126).
Visit also http://gomoob.github.io to discover more Open Source softwares we develop.
*Note that all licence references and agreements mentioned in the Php-pushwoosh README section above
are relevant to that project's source code only.