mathiasd88 / chilean-credentials
Chilean credentials package for PHP (Rut and Passport)
dev-master
2018-05-21 02:00 UTC
Requires
- php: >=5.6.0
Requires (Dev)
- phpunit/phpunit: 5.4.6
This package is not auto-updated.
Last update: 2024-11-09 19:30:24 UTC
README
A Chilean RUT credentials package for PHP 5.6+.
Installation
Require this package with composer:
composer require mathiasd88/chilean-credentials
Then use the class wherever you want using:
use Mathiasd88\ChileanCredentials\Rut;
Usage
Examples:
If you want to validate a rut:
return (new Rut('15082666', '7'))->isValid(); // returns true
return (new Rut('15082666', 'K'))->isValid(); // returns false
If you want to get the "digito verificador" of a given rut:
return (new Rut('15082666'))->dv(); // returns 7
If you want to create a valid rut:
return new Rut(); // returns a valid rut, for example: '23932394-4'
Tests
You can run all the tests using phpunit.
vendor/phpunit/phpunit/phpunit tests --colors