Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/firebit/kvk-api
- Owner: firebit
- License: mit
- Created: 2019-05-31T15:04:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-21T17:38:05.000Z (over 2 years ago)
- Last Synced: 2024-09-30T14:08:45.441Z (about 2 months ago)
- Topics: composer-package, kvk, php
- Language: PHP
- Homepage: http://firebit.nl/
- Size: 16.6 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.