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
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: 2024-12-13 19:53:34 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'