cwd / chillbill-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Integrates Chillbill API as Symfony Bundle
0.2.0
2018-04-03 10:24 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ^6.3
- symfony/framework-bundle: ~3.0|^4.0
This package is not auto-updated.
Last update: 2022-02-01 13:12:47 UTC
README
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....
}