celitech-sdk / sdk
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.0
- phpdocumentor/reflection-docblock: ^5.4
- symfony/property-access: ^7.0
- symfony/property-info: ^7.0
- symfony/serializer: ^7.0
Requires (Dev)
- laravel/pint: ^1.13.7
- nyholm/psr7: ^1.8
- php-http/mock-client: ^1.6
- phpstan/phpstan: ^1.8
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2026-06-15 08:45:12 UTC
README
Welcome to the Celitech SDK documentation. This guide will help you get started with integrating and using the Celitech SDK in your project.
Versions
- API version:
2.0.2 - SDK version:
2.0.2
About the API
Welcome to the CELITECH API documentation!
Useful links: Homepage | Support email | Blog
Table of Contents
Setup & Configuration
Supported Language Versions
This SDK is compatible with the following versions: PHP >= 8.1
Installation
Using a local path (recommended for development)
To use the SDK in your project before it is published to Packagist, add a path repository entry in your project's composer.json pointing to the SDK directory:
{
"repositories": [
{
"type": "path",
"url": "/path/to/celitech-sdk/sdk"
}
]
}
Then run:
composer require celitech-sdk/sdk
Using Packagist or a private registry
If the package is published to Packagist or a private Composer registry, install directly:
composer require celitech-sdk/sdk
Verifying the SDK setup
To verify the SDK works correctly, you can run the included example project:
- Install dependencies:
composer install
- Run the example:
php example/index.php
Authentication
OAuth Authentication
The Celitech API uses OAuth 2.0 for authentication.
You need to provide your OAuth credentials when initializing the SDK. Tokens are automatically fetched, cached, and refreshed — you do not need to manage them yourself.
new Client( clientId: 'CLIENT_ID', clientSecret: 'CLIENT_SECRET' )
If you need to set or update the OAuth credentials after the SDK initialization, you can use:
$sdk->setClientId('CLIENT_ID') $sdk->setClientSecret('CLIENT_SECRET')
Environment Variables
These are the environment variables for the SDK:
| Name | Description |
|---|---|
| CLIENT_ID | Client ID parameter |
| CLIENT_SECRET | Client Secret parameter |
Environment variables are a way to configure your application outside the code. You can set these environment variables on the command line or use your project's existing tooling for managing environment variables.
If you are using a .env file, a template with the variable names is provided in the .env.example file located in the same directory as this README.
Setting a Custom Timeout
You can set a custom timeout for the SDK's HTTP requests as follows:
$sdk = new Client(timeout: 1000);
Sample Usage
Below is a comprehensive example demonstrating how to authenticate and call a simple endpoint:
<?php use Celitech\Client; $sdk = new Client(clientId: 'CLIENT_ID', clientSecret: 'CLIENT_SECRET'); $response = $sdk->destinations->listDestinations(); print_r($response);
Services
The SDK provides various services to interact with the API.
Below is a list of all available services with links to their detailed documentation:
| Name |
|---|
| Destinations |
| Packages |
| Purchases |
| ESim |
| IFrame |
Models
The SDK includes several models that represent the data structures used in API requests and responses. These models help in organizing and managing the data efficiently.
Below is a list of all available models with links to their detailed documentation:
License
This SDK is licensed under the MIT License.
See the LICENSE file for more details.