- Created CHANGELOG.md to maintain version history. - Added README.md with usage instructions for the trigger_deprecation() function. - Initialized composer.json for the Symfony Deprecation Contracts library, specifying dependencies and autoloading.
9 lines
197 B
PHP
9 lines
197 B
PHP
<?php
|
|
|
|
namespace PShowSsoScoped\Lcobucci\JWT\Token;
|
|
|
|
use PShowSsoScoped\Lcobucci\JWT\Token;
|
|
use function class_alias;
|
|
|
|
class_exists(Plain::class, false) || class_alias(Token::class, Plain::class);
|