Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/firebit/kvk-api

PHP Implementation of the KvK API (V2)
https://github.com/firebit/kvk-api

composer-package kvk php

Last synced: about 1 month ago
JSON representation

PHP Implementation of the KvK API (V2)

Awesome Lists containing this project

README

        



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
```php
$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
- [X] Search Query
- [ ] Profile Query
- [X] Adapter for using the test API (for use in tests)
- [ ] PHPUnit tests
- [ ] Documentation

## License
For the license please check the [LICENSE](https://github.com/firebit/kvk-api/blob/master/LICENSE) file, this project has the MIT license.