PHPackages                             idplein/twinfield-booking - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. idplein/twinfield-booking

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

idplein/twinfield-booking
=========================

Package to book invoices to twinfield

062↓100%PHP

Since Feb 26Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Webgato-Software/twinfield-booking)[ Packagist](https://packagist.org/packages/idplein/twinfield-booking)[ RSS](/packages/idplein-twinfield-booking/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Twinfield booking
=================

[](#twinfield-booking)

Installation
------------

[](#installation)

First add the repository to your composer.json, so composer can find this package.

```
"repositories": [
    {
        "type": "vcs",
        "url": "ssh://git@gitlab.qlic.nl/packages/twinfield-booking.git"
    }
],
```

Then add the package as a dependency.

```
composer require qlic/twinfield-booking
```

In case you are running Laravel &lt; 5.5 Add the following provider to your service providers (in `config/app.php`)

```
Qlic\Twinfield\Booking\Providers\TwinfieldBookingServiceProvider::class,
```

In case you need to tweak things, you can publish the config file.

```
php artisan vendor:publish --provider="Qlic\Twinfield\Booking\Providers\TwinfieldBookingServiceProvider"
```

Usage
-----

[](#usage)

Typehint `InvoiceBookerContract` and use it's methods.

Example:

```
