Download the PHP package ctwillie/expo-server-sdk-php without Composer
On this page you can find all versions of the php package ctwillie/expo-server-sdk-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ctwillie/expo-server-sdk-php
More information about ctwillie/expo-server-sdk-php
Files in ctwillie/expo-server-sdk-php
Package expo-server-sdk-php
Short Description Server-side library for working with Expo using PHP
License MIT
Homepage https://github.com/ctwillie/expo-server-sdk-php
Informations about the package expo-server-sdk-php
expo-server-sdk-php

Server-side library for working with Expo using PHP.
If you have any problems with the code in this repository, feel free to open an issue or make a PR!
Table of Contents
- [Testing](#testing) - [Installation](#installation) - [Use Cases](#use-cases) - [Composing a Message](#composing-a-message) - [Sending a Message](#sending-a-push-notification) - [Channel Subscriptions](#channel-subscriptions) - [Expo Responses](#expo-responses) - [Handling Unregistered Devices](#handling-unregistered-devices) - [Retrieving Push Receipts](#retrieving-push-receipts) - [Changelog](#changelog) - [Contributing](#contributing) - [License](#license)Testing
You can run the test suite via composer:
Installation
You can install the package via composer:
Use Cases
This package was written with two main use cases in mind.
- Sending push notification messages to one or more recipients, then you're done! The most obvious use case.
- And channel subscriptions, used to subscribe one or more tokens to a channel, then send push notifications to all tokens subscribed to that channel. Subscriptions are persisted until a token unsubscribes from a channel. Maybe unsubscribing upon the end users request.
Keep this in mind as you decide which is the best use case for your back end.
Composing a message
Compose a push notification message to send using options from the Expo docs.
Sending a push notification
Compose a message then send to one or more recipients.
Channel subscriptions
Subscribe tokens to a channel, then push notification messages to that channel. Subscriptions are persisted internally in a local file so you don't have to worry about this yourself. Unsubscribe the token from the channel at any time to stop messages to that recipient.
:warning: If you are are running multiple app servers: Be very careful here! Channel subscriptions are stored in an internal local file. Subscriptions will not be shared across multiple servers.
Expo responses
Get the data returned from successful responses from the Expo server.
Handling unregistered devices
Expo provides a macro for handling tokens that have DeviceNotRegistered error in the Expo response. You can register a callback before sending your messages to handle these unregistered tokens.
You only need to register the handler once as it will be applied to all Expo instances.
Retrieving push receipts
Retrieve the push receipts using the ticket ids from the Expo server.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.
Credits
- Cedric Twillie
- All Contributors