This is a Drupal 8 module that allows you to send push notification through Pushover service.
\Drupal::service('pushover.sender')->sendNotification($title, $message, $url = NULL, $url_title = NULL);
\Drupal::service('pushover.sender')->sendNotification('Test config', 'Hello world !');
\Drupal::service('pushover.sender')->sendNotification($title, $description, $url, $url_label);
This module is not (yet ?) on drupal.org, but you can download it with composer :
composer config repositories.drupal-pushover vcs https://github.com/kgaut/drupal-pushover
composer require drupal/pushover