PHPackages                             otisz/laravel-billingo - 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. [Payment Processing](/categories/payments)
4. /
5. otisz/laravel-billingo

ActiveLibrary[Payment Processing](/categories/payments)

otisz/laravel-billingo
======================

Billingo REST API integration for Laravel

v2.1.0(3y ago)31.4k3[1 issues](https://github.com/Otisz/Laravel-Billingo/issues)MITPHPPHP ^7.2|^8.0CI failing

Since Mar 20Pushed 3y ago2 watchersCompare

[ Source](https://github.com/Otisz/Laravel-Billingo)[ Packagist](https://packagist.org/packages/otisz/laravel-billingo)[ RSS](/packages/otisz-laravel-billingo/feed)WikiDiscussions v2 Synced 2w ago

READMEChangelog (1)Dependencies (3)Versions (18)Used By (0)

Laravel Billingo
================

[](#laravel-billingo)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f99ec0ffcc5c1db661a8262b258f2c16bbff3c14d5814f90860f95b0aad8448a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f7469737a2f6c61726176656c2d62696c6c696e676f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/otisz/laravel-billingo)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/e1fee980272c4bfddf6ed921b67fd653dede628cfc8c90459cb8b92b7d682042/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f7469737a2f6c61726176656c2d62696c6c696e676f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/otisz/laravel-billingo)

[Billingo](https://www.billingo.hu) API integration for Laravel.

Laravel Billingo V3 is under development.

Roadmap
-------

[](#roadmap)

- Implement invoices service (2019. 03. 25.)
- Refactor documents of services (2019. 03. 25.)
- Use custom connector package (2019. 04. 17.)
- Implement products service (2019. 06. 09.)
- Implement expenses service (2019. 06. 09.)
- Implement recurring service (2019. 06. 09.)
- Implement bank accounts service (2019. 06. 09.)
- Implement payment methods service (2019. 06. 09.)
- Implement vat service (2019. 06. 09.)
- Implement currency service (2019. 06. 09.)
- Add further docs

Dependencies
------------

[](#dependencies)

- [PHP](https://secure.php.net): ^7.1
- [illuminate/support](https://github.com/illuminate/support): ^5.0

Install
-------

[](#install)

You can install the package via [Composer](https://getcomposer.org/)

```
$ composer require otisz/laravel-billingo
```

In Laravel 5.5 or above the service provider will automatically get registered. In older versions of the framework just add the service provider in `config/app.php` file:

```
'providers' => [
    ...
    Otisz\Billingo\BillingoServiceProvider::class,
    ...
],

'aliases' => [
    ...
    'Billingo' =>  Otisz\Billingo\Facades\Billingo::class,
    ...
],
```

You can publish the config file with:

```
$ php artisan vendor:publish --provider="Otisz\Billingo\BillingoServiceProvider" --tag=config
```

When published, [the `config/billingo.php` config](config/billingo.php) file contains:

```
