PHPackages                             simplyadmire/koop - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. simplyadmire/koop

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

simplyadmire/koop
=================

Uitvragen Officiële Publicaties DROP / GVOP Koop

1.0.3(1y ago)124.3kMITPHP &gt;=7.1.0

Since Mar 23Compare

[ Source](https://github.com/SimplyAdmire/Koop)[ Packagist](https://packagist.org/packages/simplyadmire/koop)[ RSS](/packages/simplyadmire-koop/feed)WikiDiscussions Synced today

READMEChangelog (5)Dependencies (2)Versions (12)Used By (0)

Koop Client
===========

[](#koop-client)

PHP Client for the Koop publications API. Allows doing combined queries and returns an iteratable result object.

Currently only a simple publication object with a title, publication date and original url is returned. But this is perfectly suitable for a website search client pointing to the official source on officielebekendmakingen.nl.

The query result will fetch a single document

Official API document can be found at

Code examples
-------------

[](#code-examples)

Find the latest 10 (default limit) items for Barneveld

```
    $client = new \SimplyAdmire\Koop\Client(
        new \SimplyAdmire\Koop\Configuration()
    );

    $query = new \SimplyAdmire\Koop\Search\Query();
    $query
        ->matching(
            $query->exactMatch('creator', 'Barneveld')
        );

    $result = $client->execute($query);
```

Find the latest 10 items for either Barneveld or Ede

```
    $query
        ->matching(
            $query->logicalOr(
                $query->exactMatch('creator', 'Barneveld'),
                $query->exactMatch('creator', 'Ede')
            )
        );
```

Find max 50 items about the term 'paspoort' published by Barneveld or Ede where:

- Barneveld published since 01-01-2014
- Ede published since 01-01-2015

```
    $query
        ->setLimit(50)
        ->matching(
            $query->logicalOr(
                $query->logicalAnd(
                    $query->exactMatch('creator', 'Barneveld'),
                    $query->since(new \DateTime('2014-01-01')),
                    $query->fullText('paspoort')
                ),
                $query->logicalAnd(
                    $query->exactMatch('creator', 'Ede'),
                    $query->since(new \DateTime('2015-01-01')),
                    $query->fullText('paspoort')
                )
            )
        );
```

Iterating over the resut:

```
    ...
    $result = $client->execute($query);

    /** @var \SimplyAdmire\Koop\Model\Publication $publication */
    foreach ($result as $publication)
    {
        echo $publication->getPublicationDate()->format('d-m-Y') . ' ' . $publication->getTitle() . PHP_EOL;
    }
```

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 81.8% 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

Every ~307 days

Recently: every ~377 days

Total

10

Last Release

617d ago

Major Versions

0.1.3 → 1.0.02022-10-19

### Community

Maintainers

![](https://www.gravatar.com/avatar/952025ddbcf36d92ed48b3b99e8d5c3054f4437675a1f62973625443c98dcb13?d=identicon)[simplyadmire](/maintainers/simplyadmire)

---

Top Contributors

[![patrickbroens](https://avatars.githubusercontent.com/u/289623?v=4)](https://github.com/patrickbroens "patrickbroens (9 commits)")[![LarsNieuwenhuizen](https://avatars.githubusercontent.com/u/479364?v=4)](https://github.com/LarsNieuwenhuizen "LarsNieuwenhuizen (2 commits)")

---

Tags

dropgvopkoopofficiele bekendmakingen

### Embed Badge

![Health badge](/badges/simplyadmire-koop/health.svg)

```
[![Health](https://phpackages.com/badges/simplyadmire-koop/health.svg)](https://phpackages.com/packages/simplyadmire-koop)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k33](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[civicrm/civicrm-core

Open source constituent relationship management for non-profits, NGOs and advocacy organizations.

751284.3k37](/packages/civicrm-civicrm-core)[roundcube/roundcubemail

The Roundcube Webmail suite

7.0k1.4k3](/packages/roundcube-roundcubemail)[spatie/laravel-export

Create a static site bundle from a Laravel app

672139.5k6](/packages/spatie-laravel-export)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)

PHPackages © 2026

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