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
Requires
- php: >=5.3.2
- symfony/framework-bundle: ~2.7|~3.2|~4.0
This package is not auto-updated.
Last update: 2025-03-05 16:38:47 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));