protonlabs / apns-php
Apple Push Notification & Feedback Provider
Requires
- php: >=7.4
- ext-curl: *
- lib-openssl: *
- lcobucci/jwt: ^4.1.0
- psr/log: ^1 || ^2 || ^3
Requires (Dev)
- phpstan/phpstan: ^1.6
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-11-08 09:07:37 UTC
README
A full set of open source PHP classes to interact with the Apple Push Notification service for the iPhone, iPad and the iPod Touch.
Based on https://github.com/M2mobi/ApnsPHP and https://github.com/immobiliare/ApnsPHP
- Sample PHP Push code
- Sample PHP Feedback code
- Sample PHP Server code
- Full APIs Documentation
- How to generate a Push Notification certificate and download the Entrust Root Authority certificate
Packagist
https://packagist.org/packages/protonlabs/apns-php
composer req protonlabs/apns-php
Architecture
- Message class, to build a notification payload.
- Push class, to push one or more messages to Apple Push Notification service.
- Feedback class, to query the Apple Feedback service to get the list of broken device tokens.
- Push Server class, to create a Push Server with one or more (forked) processes reading from a common message queue.
- Log class/interface, to log to standard output or for custom logging purpose (supports loggers implementing the PSR-3 logger interface).
Details
In the Apple Push Notification Binary protocol there isn't a real-time feedback about the correctness of notifications pushed to the server. So, after each write to the server, the Push class waits for the "read stream" to change its status (or at least N microseconds); if it happened and the client socket receives an "end-of-file" from the server, the notification pushed to the server was broken, the Apple server has closed the connection and the client needs to reconnect to send other notifications still on the message queue.
To speed-up the sending activities the Push Server class can be used to create a Push Notification Server with many processes that reads a common message queue and sends parallel Push Notifications.
All client-server activities are based on the "on error, retry" pattern with customizable timeouts, retry times and retry intervals.
Requirements
PHP 7.4.0 or later with OpenSSL, PCNTL, System V shared memory and semaphore support.