respect-validation/docs/rules/Phone.md
Henrique Moody 788939e359
Remove backwards compatibility break from Phone rule
In version 2.3, the Phone rule started to require
"giggly/libphonenumber-for-php" as a dependency. That was a backward
compatibility break, but the validation also became stricter, and phone
numbers without country codes would not be considered valid.

This commit will revert the backward compatibility break. That way, when
validating a phone number without a country code (the behaviour from
version 2.2), the Phone will not use an external library.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-03-11 22:14:03 +01:00

736 B

Phone

  • Phone()
  • Phone(string $countyCode)

Validates whether the input is a valid phone number.

v::phone()->validate('+1 650 253 00 00'); // true
v::phone('BR')->validate('+55 11 91111 1111'); // true
v::phone('BR')->validate('11 91111 1111'); // false

Note

When validating with $countryCode, this rule will require the giggsey/libphonenumber-for-php-lite package.

Categorization

  • Strings

Changelog

Version Description
2.3.0 Introduced a validation per country
0.5.0 Created

See also: