cm2tech / soluti-bird-id-symfony-bundle
Integration of soluti/bird-id with Symfony
Package info
github.com/cm2tech/SolutiBirdIdSymfonyBundle
Type:symfony-bundle
pkg:composer/cm2tech/soluti-bird-id-symfony-bundle
dev-master / 1.0.x-dev
2019-10-11 12:31 UTC
Requires
- php: >=5.3.2
- symfony/framework-bundle: ~2.7|~3.2|~4.0
This package is not auto-updated.
Last update: 2026-03-04 21:36:50 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));