https://github.com/turahe/number-validator
https://github.com/turahe/number-validator
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/turahe/number-validator
- Owner: turahe
- License: mit
- Created: 2023-11-20T07:02:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-23T07:33:05.000Z (10 months ago)
- Last Synced: 2024-08-23T08:44:43.487Z (10 months ago)
- Language: PHP
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nik-validator
Validator is a package to convert identity number into usefully information. You just call the **parse** method and input NIK number in the parameter, then you will get the informations (without internet connection).## Usage
* Installation
```
composer require turahe/number-validator
```* Example
```php
parse();if($parsed->valid) {
var_dump($parsed);
}
```