Download the PHP package cthulhu/ios-receipt-parser without Composer
On this page you can find all versions of the php package cthulhu/ios-receipt-parser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cthulhu/ios-receipt-parser
More information about cthulhu/ios-receipt-parser
Files in cthulhu/ios-receipt-parser
Package ios-receipt-parser
Short Description Utility to parse Apple-issued PKCS#7 container with receipts
License MIT
Informations about the package ios-receipt-parser
Apple StoreKit receipt parser for PHP
This library can be used to parse Apple billing receipts in accordance with https://developer.apple.com/library/archive/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateLocally.html and https://developer.apple.com/library/archive/releasenotes/General/ValidateAppStoreReceipt/Chapters/ReceiptFields.html without calling Apple servers.
This is required, in particular, when you use latest XCode features to test your billing flow: https://developer.apple.com/documentation/xcode/setting_up_storekit_testing_in_xcode, because receipts generated this way are signed by you local special-purpose certificate and cannot be validated via Apple's own servers.
In all other cases, you should strongly prefer to validate all receipts against Apple servers.
Installation
Usage
Primary use case is to parse receipt generated by StoreKit for you locally, so you don't have to validate the signatures:
Verifying signatures
You can pass Parser
another instance of PKCS#7 reader which will actually verify signature.
Currently, only one such reader in implemented, which requires you to also install symfony/process
, have openssl
installed in your system, and also you php must be configured to allow to exec
shell script.
parseUsingOnlyTrustedCerts
being used guarantees the signature in PKCS#7 has been validated against one of the
certificates you have provided. The certificates are considered trusted (their own signatures are not verified),
so take care to only pass this function known-valid certificates.