Let us do this
This commit is contained in:
parent
9a56544692
commit
e634e7ccd5
|
@ -0,0 +1,5 @@
|
|||
language: php
|
||||
php:
|
||||
- '7.2'
|
||||
- '7.3'
|
||||
- '7.4'
|
13
README.md
13
README.md
|
@ -1,4 +1,4 @@
|
|||
# india-pincode-regex
|
||||
# india-pincode-regex 
|
||||
|
||||
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.
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue