/kvk-api

PHP Implementation of the KvK API (V2)

Primary LanguagePHPMIT LicenseMIT

Sublime's custom image

KVK-API

This is a implementation of the KvK API for PHP 7+, currently this project is a work in progress and it is not yet recommended to use it in production.

Example

$kvk = new \Firebit\kvkAPI\KvKClient();
$kvk->setApiKey('API_KEY');

$result = $kvk->search([
    'name' => 'Firebit'
]);

print_r($result->firstItem());

Installation

To install you can use Composer, use the following command to install kvk-php.
composer require firebit/kvk-php

Documentation

Coming soon!

Progress

  • Search Query
  • Profile Query
  • Adapter for using the test API (for use in tests)
  • PHPUnit tests
  • Documentation

License

For the license please check the LICENSE file, this project has the MIT license.