PHPackages                             silverback/fattureincloud - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. silverback/fattureincloud

ActiveLibrary[HTTP &amp; Networking](/categories/http)

silverback/fattureincloud
=========================

FattureInCloud API PHP SDK

1.1.5(7y ago)64273MITPHPPHP &gt;=5.6

Since Aug 8Pushed 7y ago1 watchersCompare

[ Source](https://github.com/silverbackstudio/fattureincloud)[ Packagist](https://packagist.org/packages/silverback/fattureincloud)[ Docs](https://github.com/silverbackstudio/fattureincloud/)[ RSS](/packages/silverback-fattureincloud/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (5)Versions (6)Used By (0)

PHP API for FattureInCloud.it
=============================

[](#php-api-for-fattureincloudit)

Classes are keep updated with the Documentation at

You can find your KEYS at

Available API Objects
---------------------

[](#available-api-objects)

Each API Method found in the API doc has its Class, here is a list of the currently available ones:

- [Svbk\\FattureInCloud\\Struct\\DocDettagliRequest](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/DocDettagliRequest.php)
- [Svbk\\FattureInCloud\\Struct\\DocDettagliResponse](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/DocDettagliResponse.php)
- [Svbk\\FattureInCloud\\Struct\\DocNuovoArticolo](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/DocNuovoArticolo.php)
- [Svbk\\FattureInCloud\\Struct\\DocNuovoPagamento](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/DocNuovoPagamento.php)
- [Svbk\\FattureInCloud\\Struct\\DocNuovoRequest](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/DocNuovoRequest.php)
- [Svbk\\FattureInCloud\\Struct\\DocNuovoResponse](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/DocNuovoResponse.php)
- [Svbk\\FattureInCloud\\Struct\\InfoListaRequest](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/InfoListaRequest.php)
- [Svbk\\FattureInCloud\\Struct\\InfoListaResponse](https://github.com/silverbackstudio/fattureincloud/blob/master/src/Struct/InfoListaResponse.php)

more will be available as soon as we have time to map it. Make a PR if you need a missing one.

Usage
-----

[](#usage)

### Create a simple invoice

[](#create-a-simple-invoice)

```
use Svbk\FattureInCloud;
use Svbk\FattureInCloud\Struct\DocNuovoArticolo as Product;
use Svbk\FattureInCloud\Struct\DocNuovoRequest as Invoice;
use Svbk\FattureInCloud\Struct\DocNuovoPagamento as Payment;

$client = new FattureInCloud\Client( 'API_UID', 'API_KEY' );

$invoiceProduct = new Product(
  array(
    'nome' => 'Product Name',
    'prezzo_lordo' => 10,
    'cod_iva' => 0,
  )
);

$payment_date = FattureInCloud\Date::createFromFormat( 'Y-m-d H:i:s', date('Y-m-d H:i:s') ); //now
$expire_date = $payment_date;

$invoicePayment = new Payment(
  array(
    'data_scadenza' => $expire_date,
    'importo' => 'auto', //calculate invoice total automatically
    'metodo' => '{{wallet_id}}', //place here your wallet identifier
    'data_saldo' => $payment_date,
  )
);

$newInvoice = new Invoice(
  array(
    // New Customer will be created by passing details directly.
    'nome' => 'Customer Name',
    'indirizzo_via' => 'Customer Address',
    'indirizzo_cap' => '50000',  //Postal Code
    'indirizzo_citta' => 'Customer City',
    'indirizzo_provincia' => 'Customer State/Province',
    'piva' => 'VATID000000', //vat ID
    'cf' => 'FISCALCODEXXXXX',
    'paese' => 'Customer Country', //must be obtained via $client->getInfoList( array( 'lista_paesi' ) );
    'lista_articoli' => array( $invoiceProduct ),
    'lista_pagamenti' => array( $invoicePayment ),
    'prezzi_ivati' => true, // VAT included
  )
);

$result = $client->createDoc( FattureInCloud\Client::TYPE_FATTURA, $newInvoice );

if ( $result && ! $result->error ) {
  $invoice_id = $result->new_id;
} else {
  die( sprintf( '[FattureInCloud] Can\'t create invoice. Error: %s', isset($result->error) ? $result->error : '' ) );
}
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~89 days

Total

5

Last Release

2844d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7a82a47436ceac89bbaeb95a8367354273e56082b8bbbaa8c50ababaf6032d77?d=identicon)[brandomeniconi](/maintainers/brandomeniconi)

---

Top Contributors

[![brandomeniconi](https://avatars.githubusercontent.com/u/393114?v=4)](https://github.com/brandomeniconi "brandomeniconi (2 commits)")

---

Tags

apifattureincloudapiclientsdkrestweb servicefattureincloud

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/silverback-fattureincloud/health.svg)

```
[![Health](https://phpackages.com/badges/silverback-fattureincloud/health.svg)](https://phpackages.com/packages/silverback-fattureincloud)
```

###  Alternatives

[cristianpontes/zoho-crm-client-php

Provides a clean readable PHP API to the Zoho Rest API

5554.0k](/packages/cristianpontes-zoho-crm-client-php)[huaweicloud/huaweicloud-sdk-php

Huawei Cloud SDK for PHP

1829.2k2](/packages/huaweicloud-huaweicloud-sdk-php)[e-moe/guzzle6-bundle

Integrates Guzzle 6 into your Symfony application

11259.2k](/packages/e-moe-guzzle6-bundle)[abantecart/ups-php

UPS PHP SDK based on OAuth

1815.3k](/packages/abantecart-ups-php)[repat/plentymarkets-rest-client

REST Client for Plentymarkets

1510.0k](/packages/repat-plentymarkets-rest-client)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
