dropsolid/oauth2-dropsolid-platform

Dropsolid Platform OAuth 2.0 Client Provider for The PHP League OAuth2-Client

Installs: 7 862

Dependents: 0

Suggesters: 1

Security: 0

Stars: 0

Forks: 0

pkg:composer/dropsolid/oauth2-dropsolid-platform

1.0.0 2023-08-02 17:03 UTC

This package is auto-updated.

Last update: 2025-09-29 02:28:41 UTC


README

This package provides Dropsolid Platform OAuth 2.0 support for the PHP League's OAuth 2.0 Client.

Installation

composer require dropsolid/oauth2-dropsolid-platform

Usage

See the League documentation. This package provides a Dropsolid Platform specific provider you can use instead of the generic one.

$provider = new Dropsolid\OAuth2\Client\Provider\DropsolidPlatform([
    'clientId' => 'your-client-id',
    'clientSecret' => 'your-client-secret',
    'redirectUri' => 'https://example.com/your-redirect-url',
]);