empla / meetgeek-sdk
MeetGeek.ai SDK
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Forks: 0
pkg:composer/empla/meetgeek-sdk
Requires
- php: >=8.2.0
- ext-json: *
- psr/http-client: ^1.0
- psr/http-factory: ^1.1
- psr/log: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.92
- guzzlehttp/guzzle: ^7.10
- guzzlehttp/psr7: ^2.8
- phpunit/phpunit: ^11.5
This package is auto-updated.
Last update: 2025-12-27 22:32:23 UTC
README
A PHP integration of the MeetGeek.ai Public API.
Sponsors
This library is made possible by Empla B.V.. Empla is an API integrator software company.

Installation
Before you can use this library, register at MeetGeek.ai.
In your MeetGeek account, go to Integrations and find the Public API integration. Copy your API key and save it for later.
Composer (recommended)
Add the library with Composer
composer require empla/meetgeek-sdk
Setup
The API Client uses an PSR-17 compatible HTTP Client and HTTP Factories.
<?php
// Create a PSR-17 HTTP Client. For example Guzzle.
$client = new \GuzzleHttp\Client([]);
// Create a RequestFactoryInterface, StreemFactoryInterface and UriFactoryInterface.
// For example the all in onw Guzzle PSR-7 HttpFactory
$httpFactory = new GuzzleHttp\Psr7\HttpFactory();
$apiClient = new ApiClient(
'your-meetgeek-api-key', // Your MeetGeek Public API Key
$client,
$httpFactory,
$httpFactory,
$httpFactory,
);
$meetgeek = new \Empla\MeetGeekSDK\MeetGeek($apiClient);