PHPackages                             b35/vivoo-poi-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. b35/vivoo-poi-client

ActiveLibrary[API Development](/categories/api)

b35/vivoo-poi-client
====================

PHP client for the Vlaanderen POI OGC API Features

1.0.0(3w ago)02MITPHPPHP ^8.1

Since May 14Pushed 3w agoCompare

[ Source](https://github.com/BramEsposito/vivoo-poi-client)[ Packagist](https://packagist.org/packages/b35/vivoo-poi-client)[ RSS](/packages/b35-vivoo-poi-client/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (2)Versions (2)Used By (0)

vivoo-poi-client
================

[](#vivoo-poi-client)

PHP client for the [Digitaal Vlaanderen POI OGC API Features](https://geo.api.vlaanderen.be/POI/ogc/features/v1/) service, with a focus on the **Vlaamse Inventaris van Ongeschikte en Onbewoonbare Woningen (VIVOO)** — the Flemish registry of dwellings declared unsuitable or uninhabitable by municipal mayors under Book 3 of the 2021 Flemish Housing Code.

The dataset covers single-family homes, apartments, and rooms in the Flemish Region. It is maintained by [Wonen in Vlaanderen](https://www.vlaanderen.be/datavindplaats/catalogus/vlaamse-inventaris-van-ongeschikte-en-onbewoonbare-woningen-via-poi-service) and refreshed daily. When using this data, attribution is required: **"Bron: Wonen-Vlaanderen"**.

Requirements
------------

[](#requirements)

- PHP 8.1+
- Composer

Installation
------------

[](#installation)

```
composer require b35/vivoo-poi-client
```

Usage
-----

[](#usage)

### Basic usage

[](#basic-usage)

```
use B35\Vivoo\PoiClient;

$client = new PoiClient();

// List all available collections
$collections = $client->getCollections();

// Fetch features from a collection (with optional limit and bounding box)
$features = $client->getFeatures('POI', [
    'limit' => 10,
    'bbox'  => [2.5, 50.6, 5.9, 51.6],
]);

// Fetch a single feature by ID
$feature = $client->getFeature('POI', '12345');
```

### Filtering with CqlFilter

[](#filtering-with-cqlfilter)

`CqlFilter` builds [CQL2-text](https://docs.ogc.org/is/21-065r2/21-065r2.html) filter strings. Pass the result as the `filter` parameter alongside `'filter-lang' => 'cql2-text'`.

```
use B35\Vivoo\CqlFilter;
use B35\Vivoo\PoiClient;

$client = new PoiClient();

// Filter by address
$filter = (new CqlFilter())->address(
    straat:     'Bergensesteenweg',
    huisnummer: '709',
    gemeente:   'Sint-Pieters-Leeuw',
)->build();

$features = $client->getFeatures('POI', [
    'filter'      => $filter,
    'filter-lang' => 'cql2-text',
]);
```

#### CqlFilter methods

[](#cqlfilter-methods)

MethodCQL2 output`->equals('FIELD', 'value')``FIELD='value'``->like('FIELD', 'val%')``FIELD LIKE 'val%'``->address(straat, huisnummer, postcode, gemeente)`Convenience wrapper for the standard address fieldsAll parameters to `address()` are optional. Wildcards `%` (any string) and `_` (single character) are supported in `like()` and in the `straat` parameter of `address()`. Matches are case-sensitive.

Multiple conditions are joined with `AND`:

```
$filter = (new CqlFilter())
    ->equals('PRODUCT', 'VlaamseInventarisOngeschikteOnbewoonbareWoningen')
    ->address(gemeente: 'Antwerpen')
    ->build();
// PRODUCT='VlaamseInventarisOngeschikteOnbewoonbareWoningen' AND GEMEENTE='Antwerpen'
```

### All client methods

[](#all-client-methods)

MethodEndpoint`getLandingPage()``GET /``getConformanceDeclaration()``GET /conformance``getCQLFunctions()``GET /functions``getCollections()``GET /collections``describeCollection($id)``GET /collections/{id}``getQueryables($id)``GET /collections/{id}/queryables``getFeatures($id, $params)``GET /collections/{id}/items``getFeature($id, $featureId)``GET /collections/{id}/items/{featureId}``searchFeatures($id, $body)``POST /collections/{id}/search``getFeatures()` and `searchFeatures()` accept: `limit`, `bbox`, `datetime`, `filter`, `filter-lang`, `filter-crs`, `sortby`, `crs`, `bbox-crs`.

### Error handling

[](#error-handling)

All API and network errors throw `B35\Vivoo\Exception\ApiException`:

```
use B35\Vivoo\Exception\ApiException;

try {
    $features = $client->getFeatures('unknown-collection');
} catch (ApiException $e) {
    echo $e->getStatusCode();    // HTTP status code
    echo $e->getResponseBody();  // Raw response body
}
```

License
-------

[](#license)

MIT

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance94

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

26d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/74d5afec8ca3d2ef879820fbb560269d11bbb434a1147377e27fc45d5ba2791d?d=identicon)[Bram Esposito](/maintainers/Bram%20Esposito)

---

Top Contributors

[![BramEsposito](https://avatars.githubusercontent.com/u/168336?v=4)](https://github.com/BramEsposito "BramEsposito (2 commits)")

---

Tags

geojsonvlaanderenpoicqlogcapi-features

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/b35-vivoo-poi-client/health.svg)

```
[![Health](https://phpackages.com/badges/b35-vivoo-poi-client/health.svg)](https://phpackages.com/packages/b35-vivoo-poi-client)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3751.2M45](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

1.9k496.1k32](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.3M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

232.5k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[aimeos/prisma

A powerful PHP package for integrating media related Large Language Models (LLMs) into your applications

1772.4k4](/packages/aimeos-prisma)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
