Symfony integration of the norkunas/onesignal-php-api library
You just require using composer and you're good to go!
composer require birkof/onesignal-bundle
If you don't use Flex, you need to manually enable bundle in your kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = [
// ...
new Adelplace\OneSignalBundle\OneSignalBundle()
];
}
Add the following lines to your config.yml
adelplace_one_signal:
application_id: 'my application id'
application_auth_key: 'my application auth key'
user_auth_key: 'my user auth key'
To use the api service you just need to call 'onesignal.api' in the container
$api = $this->get('onesignal.api');
$api->notifications->getAll();
...
For more information look at the norkunas/onesignal-php-api documentation
Feel free to contribute if you have any idea to improve this project.
Please make sure you have docker installed on your host. Then just run
./run-test
This project is licensed under the MIT License - see the LICENSE.md file for details