albertborsos/yii2-billingo

Yii 2.0 component to connect your application with Billingo API

Installs: 48

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 0

Open Issues: 0

Type:yii2-extension

dev-master 2019-03-29 14:03 UTC

This package is auto-updated.

Last update: 2024-04-29 03:51:21 UTC


README

Build Status

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
        ],
    ...
    ],
...