treehouselabs/address-parser

There is no license information available for the latest version (v1.0.4) of this package.

A Dutch address parser

v1.0.4 2019-05-28 14:25 UTC

This package is not auto-updated.

Last update: 2024-04-27 13:51:28 UTC


README

Address Parser is a library that can parse most dutch addresses.

Build Status Scrutinizer Code Quality Code Coverage

Usage

$parser = new \TreeHouse\AddressParser\AddressParser();

$result = $parser->parse('Willembuytechweg 45');

var_dump($result);

The above example will output:

array(3) {
  'street' =>
  string(16) "Willembuytechweg"
  'number' =>
  string(2) "45"
  'address' =>
  string(19) "Willembuytechweg 45"
}