sorciulus/check-partita-iva

Libraries for the formal control of the Italian VAT ID

Installs: 27 590

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/sorciulus/check-partita-iva

0.1.1 2017-12-18 14:02 UTC

This package is auto-updated.

Last update: 2025-09-29 01:44:05 UTC


README

Packagist Build Status Scrutinizer Code Quality Code Climate Issue Count Software License

Libraries for the formal control of the Italian VAT ID

Installation

Via Composer:

composer require sorciulus/check-partita-iva

Usage

<?php
require_once 'vendor/autoload.php';

use sorciulus\PartitaIva\PartitaIva;

$check = new PartitaIva();
$result = $check->setPartitaIva("07973780013")->isValid();
if ($result) {
    echo "Partita Iva is formally valid";
} else {
    echo "Partita Iva not valid";
}   

License

This Library is released under the MIT License. Please see License File for more information.