Skip to content

Latest commit

 

History

History
101 lines (63 loc) · 2.74 KB

README.md

File metadata and controls

101 lines (63 loc) · 2.74 KB
Nik Parser Php

 

NIK Parser PHP

Github top language Github language count Repository size License Github issues Github forks Github stars

About   |   Features   |   Technologies   |   Requirements   |   Setup   |   Usage   |   License   |   Author


🎯 About

NIK Parser is a package to convert Indonesian citizenship identity number into usefull information.

✨ Features

✔️ All information of NIK number identification like province, birthdate, age etc.\

🚀 Technologies

The following tools were used in this project:

✅ Requirements

Before starting 🏁, you need to have PHP and - Composer installed.

🚀 Usage

Install

composer require bangadam/nik-parser-php

Example

<?php

use NikParser\NikParser;
require __DIR__.'/vendor/autoload.php';

try {
    $nikParser = new NikParser("3509211202010006");

    var_dump($nikParser->getAll());

} catch (\Exception $e) {
    echo $e->getMessage();
}

📝 License

This project is under license from MIT. For more details, see the LICENSE file.

Made with ❤️ by Muhammad Adam

 

Back to top