spyrit / billetel-bundle
Symfony bundle for Billetel client
Package info
github.com/spyrit/billetel-bundle
Type:symfony-bundle
pkg:composer/spyrit/billetel-bundle
v1.0.0
2023-03-13 15:57 UTC
Requires
- php: >=7.4
- spyrit/billetel: dev-symfony4
- symfony/framework-bundle: ^3.4|^4.0|^5.0
Requires (Dev)
- matthiasnoback/symfony-config-test: ^4.3
- phpunit/phpunit: ^9.0
- symfony/phpunit-bridge: ^6.2
- symfony/yaml: ^4.4|^5.0|^6.0
This package is auto-updated.
Last update: 2026-03-13 22:41: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'