|
Initial auth client package scaffold
|
|---|
|
0 parent
commit c95c99f8d42fbfa9b128b1f777f8371e282ac8d1
|
| .gitignore 0 → 100644 |
|---|
| EXTRACTION.md 0 → 100644 |
|---|
| README.md 0 → 100644 |
|---|
| composer.json 0 → 100644 |
|---|
| examples/consumer-template/README.md 0 → 100644 |
|---|
| examples/consumer-template/composer.json 0 → 100644 |
|---|
| examples/plain-php/README.md 0 → 100644 |
|---|
| examples/plain-php/bootstrap.php 0 → 100644 |
|---|
| examples/plain-php/callback.php 0 → 100644 |
|---|
| examples/plain-php/index.php 0 → 100644 |
|---|
| examples/plain-php/stores.php 0 → 100644 |
|---|
| examples/plain-php/webhook.php 0 → 100644 |
|---|
| phpunit.xml.dist 0 → 100644 |
|---|
| src/Client/GAuthClient.php 0 → 100644 |
|---|
| src/Config/GAuthConfig.php 0 → 100644 |
|---|
| src/Contract/ClockInterface.php 0 → 100644 |
|---|
| src/Contract/PkceStoreInterface.php 0 → 100644 |
|---|
| src/Contract/RuntimeUserProviderInterface.php 0 → 100644 |
|---|
| src/Contract/StateStoreInterface.php 0 → 100644 |
|---|
| src/Contract/TokenEndpointInterface.php 0 → 100644 |
|---|
| src/Contract/TokenStoreInterface.php 0 → 100644 |
|---|
| src/Contract/WebhookParserInterface.php 0 → 100644 |
|---|
| src/Contract/WebhookVerifierInterface.php 0 → 100644 |
|---|
| src/DTO/AuthenticatedUser.php 0 → 100644 |
|---|
| src/DTO/AuthorizationRequest.php 0 → 100644 |
|---|
| src/DTO/ClientAccess.php 0 → 100644 |
|---|
| src/DTO/TokenSet.php 0 → 100644 |
|---|
| src/DTO/VerifiedWebhook.php 0 → 100644 |
|---|
| src/DTO/WebhookEvent.php 0 → 100644 |
|---|
| src/Exception/ConfigurationException.php 0 → 100644 |
|---|
| src/Exception/GAuthException.php 0 → 100644 |
|---|
| src/Exception/PkceException.php 0 → 100644 |
|---|
| src/Exception/RuntimeApiException.php 0 → 100644 |
|---|
| src/Exception/StateValidationException.php 0 → 100644 |
|---|
| src/Exception/TokenExchangeException.php 0 → 100644 |
|---|
| src/Exception/TokenRefreshException.php 0 → 100644 |
|---|
| src/Exception/TokenRevokeException.php 0 → 100644 |
|---|
| src/Exception/TransportException.php 0 → 100644 |
|---|
| src/Exception/WebhookPayloadException.php 0 → 100644 |
|---|
| src/Exception/WebhookVerificationException.php 0 → 100644 |
|---|
| src/OAuth/AuthorizationUrlBuilder.php 0 → 100644 |
|---|
| src/OAuth/HttpTokenEndpoint.php 0 → 100644 |
|---|
| src/OAuth/PkceGenerator.php 0 → 100644 |
|---|
| src/Runtime/HttpRuntimeUserProvider.php 0 → 100644 |
|---|
| src/Support/InMemoryPkceStore.php 0 → 100644 |
|---|
| src/Support/InMemoryStateStore.php 0 → 100644 |
|---|
| src/Support/InMemoryTokenStore.php 0 → 100644 |
|---|
| src/Support/SystemClock.php 0 → 100644 |
|---|
| src/Webhook/HmacWebhookVerifier.php 0 → 100644 |
|---|
| src/Webhook/JsonWebhookParser.php 0 → 100644 |
|---|
| tests/.gitkeep 0 → 100644 |
|---|
| tests/Unit/Client/GAuthClientTest.php 0 → 100644 |
|---|
| tests/Unit/Config/GAuthConfigTest.php 0 → 100644 |
|---|
| tests/Unit/OAuth/AuthorizationUrlBuilderTest.php 0 → 100644 |
|---|
| tests/Unit/Webhook/HmacWebhookVerifierTest.php 0 → 100644 |
|---|
| tests/Unit/Webhook/JsonWebhookParserTest.php 0 → 100644 |
|---|
| tests/bootstrap.php 0 → 100644 |
|---|