Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Latest commit

 

History

History
37 lines (28 loc) · 714 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 714 Bytes

Maldives CustomsTariff

Build Status

Maldives Customs tariff data query library using http://customs.gov.mv/SearchTariff

Installation

$ composer require apo/customs-tariff

Usage

    $ct =  new CustomsTariff('food');
    $ct->getList();
    $ct =  new CustomsTariff();
    $ct->search('almond');
    $ct->toJson();
    $ct =  new CustomsTariff();
    $ct->search('tuna');
    $ct->setLimit(10)
    $ct->toJson();
    $ct =  new CustomsTariff();
    $ct->findCode('0302310000');
    $ct->toJson();