biila-io/laravel-procountor-api is a Laravel package for provides procountor wrapper for laravel.
It currently has 0 GitHub stars and 4 downloads on Packagist (latest version v0.2.0).
Install it with composer require biila-io/laravel-procountor-api.
Discover more Laravel packages by biila-io
or browse all Laravel packages to compare alternatives.
Last updated
Install the package with Composer:
composer require biila-io/laravel-procountor-api
The package will automatically register itself.
You should add to services.php config file the following configuration:
return [
// ...
'procountor' => [
'client_id' => env('PROCOUNTOR_CLIENT_ID'),
'client_secret' => env('PROCOUNTOR_CLIENT_SECRET'),
'redirect_uri' => env('PROCOUNTOR_REDIRECT_URI'),
'api_key' => env('PROCOUNTOR_API_KEY'),
],
]
Procountor::getConfig()
Procountor::accessToken()
Procountor::accessTokenExpiresAt()
Procountor::refreshAccessToken()
Procountor::getAccountingCode()
Procountor::getInvoices($query)
Procountor::getInvoice($invoiceId)
Procountor::storeInvoice($data)
Procountor::verifyInvoice($invoiceId)
Procountor::approveInvoice($invoiceId)
Procountor::invalidateInvoice($invoiceId)
Procountor::getAttachments($query)
Procountor::getAttachment($attachmentId)
Procountor::uploadAttachment($filePath, $referenceId, $disk, $filename)
Convenient Laravel Commands is open-sourced software licensed under the MIT license.