https://github.com/minishlink/web-push-bundle
Bundle around the WebPush library
https://github.com/minishlink/web-push-bundle
bundle notifications php symfony symfony-bundle web-push
Last synced: 3 months ago
JSON representation
Bundle around the WebPush library
- Host: GitHub
- URL: https://github.com/minishlink/web-push-bundle
- Owner: Minishlink
- License: mit
- Created: 2015-11-28T08:23:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-06T09:59:12.000Z (6 months ago)
- Last Synced: 2025-04-04T13:45:09.825Z (3 months ago)
- Topics: bundle, notifications, php, symfony, symfony-bundle, web-push
- Language: PHP
- Size: 26.4 KB
- Stars: 45
- Watchers: 2
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MinishlinkWebPushBundle
This bundle provides a simple integration of the [WebPush library](https://github.com/Minishlink/web-push).[](https://insight.sensiolabs.com/projects/0c2947f7-f173-4d00-b0bb-da26613d52a2)
## Usage
Web Push sends notifications to endpoints which server delivers web push notifications as described in
the [Web Push API specification](http://www.w3.org/TR/push-api/).```php
container->get('minishlink_web_push');
```The bundle provides a new `minishlink_web_push` service that returns an instance of `Minishlink\WebPush\WebPush`.
For more info on what you can do with `$webPush`, check [Minishlink/web-push](https://github.com/Minishlink/web-push).
## Installation
1. `composer require minishlink/web-push-bundle`
2. Enable the bundle in your `app/AppKernel.php`.```php