cwd/chillbill-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Integrates Chillbill API as Symfony Bundle

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Type:symfony-bundle

0.2.0 2018-04-03 10:24 UTC

This package is not auto-updated.

Last update: 2022-02-01 13:12:47 UTC


README

Latest Stable Version Total Downloads License

This bundles lets you intecreate the chillbill.co API

Installation

composer require cwd/chillbill-bundle

Add to AppKernel.php:

[...]
new Cwd\ChillbillBundle\CwdChillbillBundle(),
[...]

Or bundels.php:

[...]
Cwd\ChillbillBundle\CwdChillbillBundle::class => ['all' => true],
[...]

Add to config.yml:

cwd_chillbill:
  api_key: '123456'      

How to use:

$offset = 123; // Optional Offset
$bills = $this->get(ChillbillAdapter::class)->getBills($offset);

foreach ($bills as $bill) {
 // do something with it....
}