PHPackages                             ufooo/billingo-api-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. ufooo/billingo-api-laravel

ActiveLibrary[API Development](/categories/api)

ufooo/billingo-api-laravel
==========================

Billingo API Provider for Laravel 5+

0.1.4(7y ago)030MITPHPPHP &gt;=5.5.9

Since Feb 23Pushed 7y ago1 watchersCompare

[ Source](https://github.com/Ufooo/Billingo-API-Laravel)[ Packagist](https://packagist.org/packages/ufooo/billingo-api-laravel)[ RSS](/packages/ufooo-billingo-api-laravel/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (2)Versions (5)Used By (0)

Billingo API Provider for Laravel
=================================

[](#billingo-api-provider-for-laravel)

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

Installing
----------

[](#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
------

[](#config)

Before you can use the Billingo service provider you have configure it with your API keys. You can access your API keys here:

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
-----

[](#usage)

### Get resource

[](#get-resource)

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

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

### Save resource

[](#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

[](#update-resource)

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

### Delete resource

[](#delete-resource)

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

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~345 days

Total

4

Last Release

2694d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/63ebd403a206ac48ef1923c8237326df547be3598c1e46ade9d244315ec25735?d=identicon)[NETipar](/maintainers/NETipar)

---

Top Contributors

[![danfekete](https://avatars.githubusercontent.com/u/2891082?v=4)](https://github.com/danfekete "danfekete (2 commits)")[![muzsij](https://avatars.githubusercontent.com/u/205923?v=4)](https://github.com/muzsij "muzsij (2 commits)")[![Ufooo](https://avatars.githubusercontent.com/u/10393280?v=4)](https://github.com/Ufooo "Ufooo (2 commits)")[![ferencbalogh](https://avatars.githubusercontent.com/u/2694621?v=4)](https://github.com/ferencbalogh "ferencbalogh (1 commits)")[![KristofMorva](https://avatars.githubusercontent.com/u/5695015?v=4)](https://github.com/KristofMorva "KristofMorva (1 commits)")

### Embed Badge

![Health badge](/badges/ufooo-billingo-api-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/ufooo-billingo-api-laravel/health.svg)](https://phpackages.com/packages/ufooo-billingo-api-laravel)
```

###  Alternatives

[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[spatie/laravel-route-discovery

Auto register routes using PHP attributes

23645.0k2](/packages/spatie-laravel-route-discovery)[esign/laravel-conversions-api

A laravel wrapper package around the Facebook Conversions API

69145.4k](/packages/esign-laravel-conversions-api)[didww/didww-api-3-php-sdk

PHP SDK for DIDWW API 3

1218.2k](/packages/didww-didww-api-3-php-sdk)[surface/laravel-webfinger

A Laravel package to create an ActivityPub webfinger.

113.8k](/packages/surface-laravel-webfinger)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
