oefenweb/cakephp-vat-number-check

A VAT number check Plugin for CakePHP

Installs: 14 341

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 4

Forks: 5

Open Issues: 1

Type:cakephp-plugin

pkg:composer/oefenweb/cakephp-vat-number-check

v3.0.2 2020-04-30 23:16 UTC

This package is auto-updated.

Last update: 2025-09-29 01:32:49 UTC


README

Build Status PHP 7 ready Coverage Status Packagist downloads Code Climate Scrutinizer Code Quality

Requirements

  • CakePHP 2.9.0 or greater.
  • PHP 7.0.0 or greater.

Installation

Clone/Copy the files in this directory into app/Plugin/VatNumberCheck

Configuration

Ensure the plugin is loaded in app/Config/bootstrap.php by calling:

CakePlugin::load('VatNumberCheck', ['routes' => true]);

Usage

Model

Normalizes a VAT number:

$vatNumber = $this->VatNumberCheck->normalize($vatNumber);

Checks a given VAT number:

$vatNumberValid = $this->VatNumberCheck->check($vatNumber);

Helper

Generates a VAT number check form field:

echo $this->VatNumberCheck->input('vat_number', ['label' => __('VAT number')]);