Download the PHP package insoutt/ec-validator without Composer

On this page you can find all versions of the php package insoutt/ec-validator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package ec-validator

Validar Cedula, RUC y más datos de Ecuador

Latest Version on Packagist Tests Total Downloads

Con insoutt/ec-validator podrás realizar validaciones de distintos datos que se suele usar frecuentemente en Ecuador, como por ejemplo:

Si crees que falta validar alguna información adicional puedes crear una sugerencia en el Foro de Discuciones para desarrollarla o también puedes crear un Pull Request para ser implementado.

Installación

Para instalar el paquete debes ejecutar el siguiente comando en la terminal de tu proyecto:

Uso

Validar Cédula

Validar RUC

El número de RUC no tiene un algoritmo específico definido por lo que no existe un método exacto para validarlo. Ante esto la validación que se realiza es de estructura validando el código de provincia y el número de establecimiento.

Si conoces algún mejor método puedes publicarlo en el Foro de Discuciones o crear un Pull Request para implementarlo.

En el caso de validaciones de un RUC personal si se podría realizar ya que la comprobación sería la misma que la cédula más el código de establecimiento que por lo general es 001.

Validar placa de un vehículo

Se puede realizar validaciones especificas por placa de moto, placa de carro o también se puede realizar una validación más general para validar ambos casos.

Validar número de celular

Para validar un número de celular existen 3 escenarios:

Validar teléfono convencional

Para los números de teléfono convencionales existen 4 tipos de validaciones:

API

A continuación se detalla los parámetros disponibles de cada método:

validateCedula($value)

Método Argumentos Descripción Retorno
validateCedula $value (string) Valida un número de cédula ecuatoriana. true si es válido, false si no es válido.

validateRuc($value)

Método Argumentos Descripción Retorno
validateRuc $value (string) Valida un número de RUC ecuatoriano. true si es válido, false si no es válido.

validatePlaca($value, $type = self::VALIDATE_GENERAL)

Método Argumentos Descripción Retorno
validatePlaca $value (string), $type (string) Valida una placa de vehículo. Tipos: VALIDATE_PLACA_CAR, VALIDATE_PLACA_MOTO, VALIDATE_GENERAL. true si es válido, false si no es válido.

validateCellphone($value, $type = self::VALIDATE_GENERAL)

Método Argumentos Descripción Retorno
validateCellphone $value (string), $type (string) Valida un número de celular. Tipos: VALIDATE_GENERAL, VALIDATE_NATIONAL, VALIDATE_INTERNATIONAL. true si es válido, false si no es válido.

validateTelephone($value, $type = self::VALIDATE_GENERAL)

Método Argumentos Descripción Retorno
validateTelephone $value (string), $type (string) Valida un número de teléfono fijo. Tipos: VALIDATE_LOCAL, VALIDATE_NATIONAL, VALIDATE_INTERNATIONAL, VALIDATE_GENERAL. true si es válido, false si no es válido.

getError()

Método Argumentos Descripción Retorno
getError Ninguno Devuelve el último mensaje de error registrado después de una validación fallida. Mensaje de error o cadena vacía si no hay errores.

Testing

Al clonar el repositorio en tu máquina local puedes ejecutar el siguiente comando para ejecutar las pruebas.

TIP: Si deseas conocer mejor el funcionamiento de cada método es recomendable revisar los distintos ejemplos disponibles en tests/EcValidatorTest.php.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Créditos

Contacto

Support us

License

The MIT License (MIT). Please see License File for more information.


All versions of ec-validator with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package insoutt/ec-validator contains the following files

Loading the files please wait ....