albertborsos/yii2-billingo

连接应用程序与Billingo API的Yii 2.0组件

安装: 49

依赖者: 0

建议者: 0

安全: 0

星标: 1

关注者: 3

分支: 0

开放问题: 0

类型:yii2-extension

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

This package is auto-updated.

Last update: 2024-08-29 04:37:47 UTC


README

Build Status

Yii 2.0 Billingo组件

用于管理billingo.hu发票的组件

安装

安装此扩展的首选方式是通过composer

运行

composer require --prefer-dist albertborsos/yii2-billingo

用法

扩展安装完成后,在通用配置文件中设置您的配置

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