2017 © Pedro Peláez
 

library libphonenumber-for-php

PHP Port of Google's libphonenumber

image

giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  • Thursday, July 26, 2018
  • by giggsey
  • Repository
  • 122 Watchers
  • 2413 Stars
  • 8,266,265 Installations
  • PHP
  • 131 Dependents
  • 11 Suggesters
  • 266 Forks
  • 7 Open issues
  • 100 Versions
  • 11 % Grown

The README.md

libphonenumber for PHP Build Status Coverage Status

Total Downloads Downloads per month Latest Stable Version License, (*1)

What is it?

A PHP library for parsing, formatting, storing and validating international phone numbers. This library is based on Google's libphonenumber., (*2)

Installation

PHP versions 7.4 to PHP 8.4 are currently supported., (*3)

The PECL mbstring extension is required., (*4)

It is recommended to use composer to install the library., (*5)

composer require giggsey/libphonenumber-for-php

You can also use any other PSR-4 compliant autoloader., (*6)

If you do not use composer, ensure that you also load any dependencies that this project has, such as giggsey/locale., (*7)

giggsey/libphonenumber-for-php-lite

If you only want to make use of the core PhoneNumber Util functionality, you can use giggsey/libphonenumber-for-php-lite, which offers a much smaller package size., (*8)

Documentation

Online Demo

An online demo is available, and the source can be found at giggsey/libphonenumber-example., (*9)

Highlights of functionality

  • Parsing/formatting/validating phone numbers for all countries/regions of the world.
  • getNumberType - gets the type of the number based on the number itself; able to distinguish Fixed-line, Mobile, Toll-free, Premium Rate, Shared Cost, VoIP and Personal Numbers (whenever feasible).
  • isNumberMatch - gets a confidence level on whether two numbers could be the same.
  • getExampleNumber/getExampleNumberByType - provides valid example numbers for all countries/regions, with the option of specifying which type of example phone number is needed.
  • isValidNumber - full validation of a phone number for a region using length and prefix information.
  • PhoneNumberOfflineGeocoder - provides geographical information related to a phone number.
  • PhoneNumberToTimeZonesMapper - provides timezone information related to a phone number.
  • PhoneNumberToCarrierMapper - provides carrier information related to a phone number.

Versioning

This library will try to follow the same version numbers as Google. There could be additional releases where needed to fix critical issues that can not wait until the next release from Google., (*10)

This does mean that this project may not follow Semantic Versioning, but instead Google's version policy. As a result, jumps in major versions may not actually contain any backwards incompatible changes. Please read the release notes for such releases., (*11)

Google try to release their versions according to Semantic Versioning, as laid out of in their Versioning Guide., (*12)

Quick Examples

Let's say you have a string representing a phone number from Switzerland. This is how you parse/normalize it into a PhoneNumber object:, (*13)

$swissNumberStr = "044 668 18 00";
$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
try {
    $swissNumberProto = $phoneUtil->parse($swissNumberStr, "CH");
    var_dump($swissNumberProto);
} catch (\libphonenumber\NumberParseException $e) {
    var_dump($e);
}

At this point, swissNumberProto contains:, (*14)

class libphonenumber\PhoneNumber#9 (7) {
 private $countryCode =>
  int(41)
 private $nationalNumber =>
  double(446681800)
 private $extension =>
  NULL
 private $italianLeadingZero =>
  NULL
 private $rawInput =>
  NULL
 private $countryCodeSource =>
  NULL
 private $preferredDomesticCarrierCode =>
  NULL
}

Now let us validate whether the number is valid:, (*15)

$isValid = $phoneUtil->isValidNumber($swissNumberProto);
var_dump($isValid); // true

There are a few formats supported by the formatting method, as illustrated below:, (*16)

// Produces "+41446681800"
echo $phoneUtil->format($swissNumberProto, \libphonenumber\PhoneNumberFormat::E164);

// Produces "044 668 18 00"
echo $phoneUtil->format($swissNumberProto, \libphonenumber\PhoneNumberFormat::NATIONAL);

// Produces "+41 44 668 18 00"
echo $phoneUtil->format($swissNumberProto, \libphonenumber\PhoneNumberFormat::INTERNATIONAL);

You could also choose to format the number in the way it is dialled from another country:, (*17)

// Produces "011 41 44 668 1800", the number when it is dialled in the United States.
echo $phoneUtil->formatOutOfCountryCallingNumber($swissNumberProto, "US");

// Produces "00 41 44 668 18 00", the number when it is dialled in Great Britain.
echo $phoneUtil->formatOutOfCountryCallingNumber($swissNumberProto, "GB");

Geocoder

$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();

$swissNumberProto = $phoneUtil->parse("044 668 18 00", "CH");
$usNumberProto = $phoneUtil->parse("+1 650 253 0000", "US");
$gbNumberProto = $phoneUtil->parse("0161 496 0000", "GB");

$geocoder = \libphonenumber\geocoding\PhoneNumberOfflineGeocoder::getInstance();

// Outputs "Zurich"
echo $geocoder->getDescriptionForNumber($swissNumberProto, "en_US");

// Outputs "Zürich"
echo $geocoder->getDescriptionForNumber($swissNumberProto, "de_DE");

// Outputs "Zurigo"
echo $geocoder->getDescriptionForNumber($swissNumberProto, "it_IT");

// Outputs "Mountain View, CA"
echo $geocoder->getDescriptionForNumber($usNumberProto, "en_US");

// Outputs "Mountain View, CA"
echo $geocoder->getDescriptionForNumber($usNumberProto, "de_DE");

// Outputs "미국" (Korean for United States)
echo $geocoder->getDescriptionForNumber($usNumberProto, "ko-KR");

// Outputs "Manchester"
echo $geocoder->getDescriptionForNumber($gbNumberProto, "en_GB");

// Outputs "영국" (Korean for United Kingdom)
echo $geocoder->getDescriptionForNumber($gbNumberProto, "ko-KR");

ShortNumberInfo

$shortNumberInfo = \libphonenumber\ShortNumberInfo::getInstance();

// true
var_dump($shortNumberInfo->isEmergencyNumber("999", "GB"));

// true
var_dump($shortNumberInfo->connectsToEmergencyNumber("999", "GB"));

// false
var_dump($shortNumberInfo->connectsToEmergencyNumber("911", "GB"));

// true
var_dump($shortNumberInfo->isEmergencyNumber("911", "US"));

// true
var_dump($shortNumberInfo->connectsToEmergencyNumber("911", "US"));

// false
var_dump($shortNumberInfo->isEmergencyNumber("911123", "US"));

// true
var_dump($shortNumberInfo->connectsToEmergencyNumber("911123", "US"));

Mapping Phone Numbers to carrier

$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
$swissNumberProto = $phoneUtil->parse("798765432", "CH");

$carrierMapper = \libphonenumber\PhoneNumberToCarrierMapper::getInstance();
// Outputs "Swisscom"
echo $carrierMapper->getNameForNumber($swissNumberProto, "en");

Mapping Phone Numbers to TimeZones

$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
$swissNumberProto = $phoneUtil->parse("798765432", "CH");

$timeZoneMapper = \libphonenumber\PhoneNumberToTimeZonesMapper::getInstance();
// returns array("Europe/Zurich")
$timeZones = $timeZoneMapper->getTimeZonesForNumber($swissNumberProto);

FAQ

Problems with Invalid Numbers?

This library uses phone number metadata from Google's libphonenumber. If this library is working as intended, it should provide the same result as the Java version of Google's project., (*18)

If you believe that a phone number is returning an incorrect result, first test it with libphonenumber via their Online Demo. If that returns the same result as this project, and you feel it is in error, raise it as an Issue with the libphonenumber project., (*19)

If Google's Online Demo gives a different result to the libphonenumber-for-php demo, then please raise an Issue here., (*20)

Generating data

Generating the data is not normally needed, as this repository will generally always have the up to data metadata., (*21)

If you do need to generate the data, the commands are provided by Phing. Ensure you have all the dev composer dependencies installed, then run, (*22)

vendor/bin/phing compile

This compile process clones the libphonenumber project at the version specified in METADATA-VERSION.txt., (*23)

Running tests

This project uses PHPUnit Bridge to maintain compatibility for the supported PHP versions., (*24)

To run the tests locally, run the ./phpunit script., (*25)

Integration with frameworks

Other packages exist that integrate libphonenumber-for-php into frameworks., (*26)

Framework Packages
Symfony PhoneNumberBundle
Laravel Laravel Phone
Yii2 PhoneInput
Kohana PhoneNumber
TYPO3 TYPO3 Phone Extension

These packages are supplied by third parties, and their quality can not be guaranteed., (*27)

The Versions

26/07 2018

dev-master

9999999-dev https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

26/07 2018

8.9.11

8.9.11.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

26/07 2018

dev-upstream-8.9.11

dev-upstream-8.9.11 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

11/07 2018

8.9.10

8.9.10.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

27/06 2018

8.9.9

8.9.9.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

14/06 2018

8.9.8

8.9.8.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

29/05 2018

8.9.7

8.9.7.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

29/05 2018

dev-upstream-8.9.7

dev-upstream-8.9.7 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

15/05 2018

8.9.6

8.9.6.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

03/05 2018

8.9.5

8.9.5.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

17/04 2018

8.9.4

8.9.4.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

17/04 2018

dev-upstream-8.9.4

dev-upstream-8.9.4 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

05/04 2018

8.9.3

8.9.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

14/03 2018

8.9.2

8.9.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

07/03 2018

8.9.1

8.9.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

22/02 2018

8.9.0

8.9.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

22/02 2018

dev-upstream-8.9.0

dev-upstream-8.9.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

07/02 2018

8.8.11

8.8.11.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

24/01 2018

8.8.10

8.8.10.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

24/01 2018

dev-upstream-8.8.10

dev-upstream-8.8.10 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

09/01 2018

8.8.9

8.8.9.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

06/12 2017

8.8.8

8.8.8.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

28/11 2017

8.8.7

8.8.7.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

15/11 2017

8.8.6

8.8.6.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

30/10 2017

8.8.5

8.8.5.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

16/10 2017

8.8.4

8.8.4.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

04/10 2017

8.8.3

8.8.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

20/09 2017

8.8.2

8.8.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

06/09 2017

8.8.1

8.8.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

22/08 2017

8.8.0

8.8.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

03/08 2017

8.7.1

8.7.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

18/07 2017

8.7.0

8.7.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

04/07 2017

8.6.0

8.6.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

20/06 2017

8.5.2

8.5.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

06/06 2017

8.5.1

8.5.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

23/05 2017

8.5

8.5.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

11/05 2017

8.4.3

8.4.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

25/04 2017

8.4.2

8.4.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

11/04 2017

8.4.1

8.4.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

28/03 2017

8.4

8.4.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

15/03 2017

8.3.3.1

8.3.3.1 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

14/03 2017

8.3.3

8.3.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

01/03 2017

8.3.2

8.3.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

21/02 2017

8.3.1

8.3.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

15/02 2017

8.3.0

8.3.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

02/02 2017

8.2.0

8.2.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

25/01 2017

8.1.0

8.1.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

11/01 2017

8.0.1

8.0.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

12/12 2016

8.0

8.0.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

23/11 2016

7.7.5

7.7.5.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

10/11 2016

7.7.4

7.7.4.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

26/10 2016

7.7.3

7.7.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

06/10 2016

7.7.2

7.7.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

01/10 2016

7.7.1

7.7.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

12/09 2016

7.6.1

7.6.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

24/08 2016

7.6.0

7.6.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

10/08 2016

7.5.2

7.5.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

05/08 2016

7.5.1

7.5.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

05/08 2016

7.5.0

7.5.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

14/07 2016

7.4.5

7.4.5.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3
  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

29/06 2016

7.4.4

7.4.4.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3
  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

15/06 2016

7.4.3

7.4.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3
  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

01/06 2016

7.4.2

7.4.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

18/05 2016

7.4.1

7.4.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

04/05 2016

7.3.2

7.3.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

21/04 2016

7.3.1

7.3.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

08/04 2016

7.3.0

7.3.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

21/03 2016

7.2.8

7.2.8.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

09/03 2016

7.2.7

7.2.7.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

25/02 2016

7.2.6

7.2.6.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

11/02 2016

7.2.5

7.2.5.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

28/01 2016

7.2.4

7.2.4.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

08/01 2016

7.2.3

7.2.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

15/12 2015

7.2.2

7.2.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

12/11 2015

7.2.1

7.2.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

30/10 2015

7.1.1

7.1.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

08/10 2015

7.1.0

7.1.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

16/09 2015

7.0.11

7.0.11.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

01/09 2015

7.0.10

7.0.10.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

04/08 2015

7.0.9

7.0.9.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

14/07 2015

7.0.8

7.0.8.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

26/06 2015

7.0.7

7.0.7.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

01/06 2015

7.0.6

7.0.6.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

28/04 2015

7.0.5

7.0.5.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

25/03 2015

7.0.4

7.0.4.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

03/03 2015

7.0.3

7.0.3.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

09/01 2015

7.0.2

7.0.2.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

25/11 2014

7.0.1

7.0.1.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

03/11 2014

7.0

7.0.0.0 https://github.com/giggsey/libphonenumber-for-php

PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

14/10 2014

6.3.1

6.3.1.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

25/09 2014

6.3

6.3.0.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *
  • ext-mbstring *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

22/08 2014

6.2.2

6.2.2.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

29/07 2014

6.2.1

6.2.1.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

11/07 2014

6.2.0.1

6.2.0.1 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

01/07 2014

6.2

6.2.0.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

10/06 2014

6.1.1

6.1.1.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

19/05 2014

6.1

6.1.0.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

26/02 2014

6.0

6.0.0.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

07/02 2014

5.9.4

5.9.4.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber

21/01 2014

5.9.3

5.9.3.0 https://github.com/giggsey/libphonenumber-for-php

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Requires

  • ext-intl *

 

The Development Requires

validation geocoding geolocation mobile phonenumber libphonenumber