Let us do this

This commit is contained in:
Nemo 2020-02-24 23:41:34 +05:30
parent 9a56544692
commit e634e7ccd5
3 changed files with 18 additions and 2 deletions

5
.travis.yml Normal file
View File

@ -0,0 +1,5 @@
language: php
php:
- '7.2'
- '7.3'
- '7.4'

View File

@ -1,4 +1,4 @@
# india-pincode-regex
# india-pincode-regex ![Packagist Version](https://img.shields.io/packagist/v/captn3m0/pincode?style=plastic)
Validate a [Postal Index Number][wiki] for India with a regex. The regexes are available in `regex.txt`. There are 2 regexes. The first validates PINs starting from 1-4, and the second validates the ones starting from 5-8. The reason for the split is to keep the regex size small. Currently they are both at 16K each.
@ -10,6 +10,17 @@ The source for the data is the ["All India Pincode Directory"](https://data.gov.
The `regex.txt` file is 32KB in size, so you can easily use it wherever you want, including browsers.
### PHP
The package is available on [`packagist`](https://packagist.org/packages/captn3m0/pincode).
To use the PHP package:
```php
use PIN\Validator as P;
P::validate('110011'); // returns true;
```
## License
Licensed under the [MIT License](https://nemo.mit-license.org/). See LICENSE file for details.

View File

@ -1,5 +1,5 @@
{
"name": "captn3m0/india-pincode-regex",
"name": "captn3m0/pincode",
"description": "A simple regex based validator for PIN codes in India",
"type": "library",
"license": "MIT",