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.
$kvk = new \Firebit\kvkAPI\KvKClient();
$kvk->setApiKey('API_KEY');
$result = $kvk->search([
'name' => 'Firebit'
]);
print_r($result->firstItem());
To install you can use Composer, use the following command to install kvk-php.
composer require firebit/kvk-php
Coming soon!
- Search Query
- Profile Query
- Adapter for using the test API (for use in tests)
- PHPUnit tests
- Documentation
For the license please check the LICENSE file, this project has the MIT license.