albertborsos / yii2-billingo
Yii 2.0 component to connect your application with Billingo API
Installs: 50
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- albertborsos/yii2-ddd: ~0.3
- voov/billingo-api-connector: ~1.1
- yiisoft/yii2: ~2.0.0
Requires (Dev)
- mito/yii2-coding-standards: ~2.0.0@beta
This package is auto-updated.
Last update: 2024-10-29 05:16:52 UTC
README
Yii 2.0 Billingo component
Component to manage invoices with billingo.hu
Installation
The preferred way to install this extension is through composer.
Run
composer require --prefer-dist albertborsos/yii2-billingo
Usage
Once the extension is installed, set your configuration in common config file:
... 'components' => [ ... 'billingo' => [ 'class' => 'albertborsos\billingo\Component', 'publicKey' => 'YOUR-PUBLIC-KEY', // you should not commit into your repository 'privateKey' => 'YOUR-PRIVATE-KEY', // you should not commit into your repository ], ... ], ...