spyrit/billetel-bundle

Symfony bundle for Billetel client

Installs: 15 167

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 7

Forks: 0

Open Issues: 0

Type:symfony-bundle

v1.0.0 2023-03-13 15:57 UTC

This package is auto-updated.

Last update: 2024-04-13 18:33:25 UTC


README

Install with Composer

Run:

composer require spyrit/billetel-bundle

Enable the bundle

Register the bundle in your application's kernel class:

// app/AppKernel.php
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new Spyrit\BilletelBundle\BilletelBundle(),
            // ...
        ];
    }
}

Configure the bundle

# app/config/config.yml
billetel:
    api_authorization: YOUR_TOKEN
    api_desk: YOUR_DESK
    api_url: 'http://api.billetel.fr'