voov/billingo-api-laravel 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

voov/billingo-api-laravel

Composer 安装命令:

composer require voov/billingo-api-laravel

包简介

Billingo API Provider for Laravel 5+

README 文档

README

This package is a Billingo API service provider and facade for Laravel 5.1+.

Installing

You have to use Composer to install the library

composer require voov/billingo-api-laravel

Find the providers array in the config/app.php file and add the Billingo Service Provider:

'providers' => [
  // ...
  Billingo\API\Laravel\BillingoServiceProvider::class
];

Now find the aliases array in the same config file and add the Billingo Facade class:

'aliases' => [
  // ...
  'Billingo' => Billingo\API\Laravel\BillingoFacade::class
];

Config

Before you can use the Billingo service provider you have configure it with your API keys. You can access your API keys here: https://www.billingo.hu/api

In the command line type the following:

php artisan vendor:publish

This command will generate a billingo.php file inside your config directory (usually config/). Enter your API creditentials here.

Usage

Get resource

// Return the list of clients
$clients = Billingo::get('clients');

// Return one client
$client = Billingo::get('clients/123456789');

Save resource

// save a new client
$clientData = [
  "name" => "Gigazoom LLC.",
  "email" => "rbrooks5@amazon.com",
  "billing_address" => [
      "street_name" => "Moulton",
      "street_type" => "Terrace",
      "house_nr" => "2797",
      "city" => "Preston",
      "postcode" => "PR1",
      "country" => "United Kingdom"
  ]
]
Billingo::post('clients', $clientData);

Update resource

// save client
Billingo::put('clients/123456789', $newData);

Delete resource

// delete client
Billingo::delete('clients/123456789');

统计信息

  • 总下载量: 1.39k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-02-23

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固