seinoxygen/laravel-contabilium is a Laravel package for a laravel wrapper for contabilium.
It currently has 0 GitHub stars and 3 downloads on Packagist (latest version v1.0.0).
Install it with composer require seinoxygen/laravel-contabilium.
Discover more Laravel packages by seinoxygen
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel wrapper for Contabilium.
Add Laravel Contabilium as a dependency using the composer CLI:
composer require seinoxygen/laravel-contabilium
Add the following to your config/services.php and add the correct values to your .env file
'contabilium' => [
'client_id' => env('CONTABILIUM_CLIENT_ID'),
'client_secret' => env('CONTABILIUM_CLIENT_SECRET'),
'country' => env('CONTABILIUM_COUNTRY', 'ar'),
],
If using < Laravel 5.5, add the ContabiliumServiceProvider to the providers array
'providers' => [
...
SeinOxygen\Contabilium\ContabiliumServiceProvider::class,
...
],
Next, in config/app.php, add the Contabilium to the aliases array
'aliases' => [
...
'Contabilium' => SeinOxygen\Contabilium\Facades\Contabilium::class,
...
],
The MIT License (MIT). Please see License File for more information.