szohan/appstore-server-notifications

Request handler App Store Server Notifications.

Maintainers

Package info

gitlab.com/Szohan/appstore-server-notifications

Issues

Type:symfony-bundle

pkg:composer/szohan/appstore-server-notifications

Statistics

Installs: 9 699

Dependents: 0

Suggesters: 0

Stars: 1

1.4 2022-09-01 13:38 UTC

This package is auto-updated.

Last update: 2026-03-28 16:23:43 UTC


README

Request handle and parse AppStore Server Notification to object.

Detailed information about the request can be found on the official website: https://developer.apple.com/documentation/appstoreservernotifications

Installation

This project using composer.

$ composer require szohan/appstore-server-notifications

Usage

Get payloadSigned how object.

<?php

use Szohan\AppstoreServerNotifications\Api\AppStoreNotification;
________________

$appStoreNotification = new AppStoreNotification($rawSignedPayload);
$signedPayload = $appStoreNotification->getPayload();

var_dump($signedPayload);