PHP code example of teamfurther / fgo-php-sdk

1. Go to this page and download the library: Download teamfurther/fgo-php-sdk library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

teamfurther / fgo-php-sdk example snippets


$client = new FGOClient(
    key: 'FGOKEY1234567890',
    merchantName: 'Your Company As Registered on FGO.ro Ltd.',
    merchantTaxId: 'RO12345678',
    platformUrl: $_SERVER['HTTP_HOST'],
    environment: FGOClient::ENV_PRODUCTION,
);

$invoice = $client->invoice->create([
    'Client' => [
        'CodUnic' => '79792323',
        'Denumire' => 'Client SRL',
        'Tip' => 'PJ',
    ],
    'Continut' => [
        [
            'Denumire' => 'Abonament',
            'NrProduse' => 1,
            'PretUnitar' => 45,
            'CotaTVA' => 19,
            'UM' => 'lună',
        ],
    ],
    'Serie' => 'KOMPZT',
    'TipFactura' => 'Factura',
    'Valuta' => 'RON',
]);
composer