2017 © Pedro Peláez
 

library libphonenumber-for-php

PHP Port of Google's libphonenumber

image

20steps/libphonenumber-for-php

PHP Port of Google's libphonenumber

  • Friday, April 7, 2017
  • by helmuthva
  • Repository
  • 4 Watchers
  • 0 Stars
  • 55 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 265 Forks
  • 0 Open issues
  • 71 Versions
  • 4 % 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 5.3 up to PHP 7.1 are currently supported. HHVM is also 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)

Documentation

Online Demo

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

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., (*9)

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., (*10)

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

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:, (*12)

$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:, (*13)

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:, (*14)

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

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

// 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:, (*16)

// 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., (*17)

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., (*18)

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

Generating data

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

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, (*21)

$ vendor/bin/phing compile

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

Integration with frameworks

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

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

The Versions

07/04 2017

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

07/04 2017

dev-issue175

dev-issue175 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

21/12 2013

5.9.2

5.9.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

17/12 2013

5.9.1

5.9.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

13/11 2013

5.9

5.9.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

06/11 2013

5.8.8

5.8.8.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

20/09 2013

5.8.4

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

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Development Requires

validation mobile phonenumber libphonenumber

10/09 2013

5.8

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

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Development Requires

validation mobile phonenumber libphonenumber

13/08 2013

5.7.2

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

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Development Requires

validation mobile phonenumber libphonenumber

24/07 2013

5.7

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

Unofficial PHP Port of Google's libphonenumber

  Sources   Download

Apache-2.0

The Development Requires

validation mobile phonenumber libphonenumber