anboo / apple-sign-bundle
A simple library to decode and parse Apple Sign In client tokens.
Installs: 1 132
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: ^7.1.3
- ext-ctype: *
- ext-iconv: *
- anboo/php-jwt: 4.0.6
This package is auto-updated.
Last update: 2025-03-29 00:37:38 UTC
README
Install:
composer require anboo/apple-sign-bundle:dev-master
Add bundle to config/bundles.php:
Anboo\AppleSign\AnbooAppleSignBundle::class => ['all' => true],
Usage:
/** @var ASDecoder */ private $appleDecoder; /** * @param ASDecoder $appleDecoder */ public function __construct(ASDecoder $appleDecoder) { $this->appleDecoder = $appleDecoder; } public function foo() { $payload = $this->appleDecoder->decodeIdentityToken($idToken); dump($payload); }