PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Hicri   Laravel Phone Validation   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: Laravel Phone Validation
Laravel service to validate phone numbers
Author: By
Last change:
Date: 1 year ago
Size: 2,742 bytes
 

Contents

Class file image Download

slvler - Phone Validation

tests Latest Stable Version Latest Unstable Version License

Phone Validation API for app.abstractapi.com

Abstract's Phone Number Validation and Verification API is a fast, lightweight, modern, and RESTful JSON API for determining the validity and other details of phone numbers from over 190 countries.

It's very simple to use: you only need to submit your API key and a phone number, and the API will respond as assessment of its validity, as well as additional details like the carrier details, line type, region and city details, and more.

Validating and verifying phone numbers is a critical step to reducing the chances of low quality data and fraudulent or risky users in your website or application.

Installation

To install this package tou can use composer:

    composer require slvler/phone-validation

Usage

  • First, you should extract the config/phone.php file to the config folder.
    php artisan vendor:publish --tag=phone

  • API key to be obtained from app.abstractapi.com address should be declared. This is your private API key, specific to this API.
    'phone' => [
        'base_url' => 'https://phonevalidation.abstractapi.com/',
        'api_key' => 'XXXXXXXXXXXXXXXXXXXXXXXX'
    ]

  • Abstract's Phone Number Validation and Verification API simply requires your unique API key and the phone number you'd like to check:
    use slvler\PhoneValidation\Phone;

    Phone::getData('14152007986');

  • This was a successful request, so the valid phone number and details associated with it are returned below:
   {
    "phone": "14152007986",
    "valid": true,
    "format": {
        "international": "+14152007986",
        "local": "(415) 200-7986"
    },
    "country": {
        "code": "US",
        "name": "United States",
        "prefix": "+1"
    },
        "location": "California",
        "type": "mobile",
        "carrier": "T-Mobile USA, Inc."
    }

Testing

    composer test

Credits

License

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