Download the PHP package teamfurther/fgo-php-sdk without Composer
On this page you can find all versions of the php package teamfurther/fgo-php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download teamfurther/fgo-php-sdk
More information about teamfurther/fgo-php-sdk
Files in teamfurther/fgo-php-sdk
Package fgo-php-sdk
Short Description A PHP SDK wrapper for fgo.ro API.
License MIT
Informations about the package fgo-php-sdk
The FGO PHP SDK provides convenient access to the FGO API from applications written in the PHP language.
Installation
You can install the package via composer:
Tailwind config
There is a default Tailwind configuration included with this package. In order to enjoy all Cinderblock features, you should copy and extend this config.
Getting Started
Sample usage:
NOTE: You do not have include values in the request body for each call. These will be automatically appended from the initial client configuration.
Similarly, you don't have to include . This will be automatically generated and appended to the request body.
If you include these values, they will override the default client configuration.
Available Methods
FGO Controller | FGO Method | SDK Call |
---|---|---|
/nomenclator | /tara | $client->taxonomy->countries() |
/judet | $client->taxonomy->counties() | |
/tva | $client->taxonomy->vatOptions() | |
/banca | $client->taxonomy->banks() | |
/tipincasare | $client->taxonomy->receiptTypes() | |
/tipfactura | $client->taxonomy->invoiceTypes() | |
/tipclient | $client->taxonomy->clientTypes() | |
/localitati?judet=< |
$client->taxonomy->cities($county) | |
/factura | /emitere | $client->invoice->create($body) |
$client->invoice->print($body) | ||
/stergere | $client->invoice->delete($body) | |
/anulare | $client->invoice->cancel($body) | |
/incasare | $client->invoice->createReceipt($body) | |
/stergereincasare | $client->invoice->deleteReceipt($body) | |
/stornare | $client->invoice->storno($body) | |
/awb | $client->invoice->awb($body) | |
/listfacturiasociate | $client->invoice->related($body) | |
/articol | /list | $client->article->list($body) |
/get | $client->article->get($body) | |
/articolemodificate | $client->article->modified($body) | |
/gestiune | $client->article->inventoryTypes($body) |
Check out FGO API for more information.