treehouselabs/address-parser

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

A Dutch address parser

Installs: 126 325

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 4

Open Issues: 1

pkg:composer/treehouselabs/address-parser

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

This package is not auto-updated.

Last update: 2025-09-27 20:39:52 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"
}