Run:
composer require spyrit/billetel-bundleRegister the bundle in your application's kernel class:
// app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
// ...
new Spyrit\BilletelBundle\BilletelBundle(),
// ...
];
}
}# app/config/config.yml
billetel:
api_authorization: YOUR_TOKEN
api_desk: YOUR_DESK
api_url: 'http://api.billetel.fr'