cm2tech/soluti-bird-id-symfony-bundle

Integration of soluti/bird-id with Symfony

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 2

Open Issues: 0

Type:symfony-bundle

pkg:composer/cm2tech/soluti-bird-id-symfony-bundle

dev-master / 1.0.x-dev 2019-10-11 12:31 UTC

This package is not auto-updated.

Last update: 2025-10-01 19:47:00 UTC


README

Installation

$ composer require cm2tech/soluti-bird-id-symfony-bundle

Available Routes

Usage

use Soluti\BirdIdSymfonyBundle\Service\OauthService as BirdIdOauthService;
use Soluti\BirdIdSymfonyBundle\Request\ClientToken as ClientTokenRequest;

$clientTokenRequest = new ClientTokenRequest(
    'client_id_here',
    'client_secret_here'
);

$response = BirdIdOauthService::clientToken($clientTokenRequest);

// var_dump($response->getStatusCode());
// var_dump($response->getContent(false));