Download the PHP package jdavidbakr/address-verification without Composer

On this page you can find all versions of the php package jdavidbakr/address-verification. 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 address-verification

AddressVerification

Latest Version on Packagist Total Downloads

Upgrading from version 1.x

The following changes happened between 1.x and 2.0:

How to use

A Laravel Service that uses intelligentsearch.com to validate mailing addresses.

This class sends an address to https://www.intelligentsearch.com/ via their API and updates the address with the most relevant result. It is built to run within Laravel.

Note that in its current state it does not return multiple results.

To install:

The package is auto-discovered in Laravel.

Add the following section to config/services.php:

There will be a file now located at config/address-verification.php to set your intelligentsearch.com username and password.

To use:

Create an object of type \jdavidbakr\AddressVerification\AddressRequest and fill in the appropriate values. Then call \jdavidbakr\AddressVerification\AddressVerificationService::Verify(\$request) with the cerated request. You will receive back an object of type \jdavidbakr\AddressVerification\AddressVerificationResponse.

The request defaults to ca_codes of McRy which returns mixed case and enables street address parsing for no-match addresses.

You will receive an AddressResponse object if successful. The main properties you'll likely use in the response are:

Exceptions

The following exceptions can be thrown (all namespaced to the package):

Events

View the IntelligentSearch documentation for details about what all the returned fields are, as well as the request attributes.


All versions of address-verification with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version 5.6.*|5.7.*|5.8.*|6.*|7.*|8.*
guzzlehttp/guzzle Version ~5.8|~6.0.1|~6.1|7.*
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 jdavidbakr/address-verification contains the following files

Loading the files please wait ....