PHPackages                             volodymyr68/keycrm\_php\_sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. volodymyr68/keycrm\_php\_sdk

ActiveLibrary[API Development](/categories/api)

volodymyr68/keycrm\_php\_sdk
============================

This package implements API methods for KeyCrm.

v1.0.0(1y ago)04MITPHPPHP &gt;=8.0 &lt;8.5

Since Mar 22Pushed 1y ago1 watchersCompare

[ Source](https://github.com/volodymyr68/keycrm_php_sdk)[ Packagist](https://packagist.org/packages/volodymyr68/keycrm_php_sdk)[ Docs](https://github.com/volodymyr68/keycrm_php_sdk)[ RSS](/packages/volodymyr68-keycrm-php-sdk/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

KeyCRM PHP SDK
==============

[](#keycrm-php-sdk)

This package provides an SDK for interacting with the KeyCRM API. It allows developers to integrate KeyCRM features into their PHP applications seamlessly.

Installation
------------

[](#installation)

To install this package, use Composer:

```
composer require volodymyr68/keycrm_php_sdk
```

Requirements
------------

[](#requirements)

- PHP 8.0 - 8.4
- OpenSSL extension
- cURL extension

Usage
-----

[](#usage)

### Initialize the SDK

[](#initialize-the-sdk)

To start using the SDK, include the `KeycrmSdk\Keycrm` class and initialize it with your API key:

```
require 'vendor/autoload.php';

use KeycrmSdk\Keycrm;

$apiKey = 'your-api-key-here';
$keycrm = new Keycrm($apiKey);
```

### Example API Calls

[](#example-api-calls)

#### Get Records

[](#get-records)

```
$records = $keycrm->getRecords();
print_r($records);
```

#### Create a Record

[](#create-a-record)

```
$newRecord = $keycrm->createRecord([
    'name' => 'John Doe',
    'email' => 'johndoe@example.com'
]);
print_r($newRecord);
```

#### Update a Record

[](#update-a-record)

```
$recordId = '123456';
$updatedRecord = $keycrm->updateRecord($recordId, [
    'email' => 'newemail@example.com'
]);
print_r($updatedRecord);
```

#### Delete a Record

[](#delete-a-record)

```
$recordId = '123456';
$response = $keycrm->deleteRecord($recordId);
print_r($response);
```

License
-------

[](#license)

This package is released under the MIT License.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance46

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

416d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3a1693f0330356e54c896d0054423905b3bbf7e07ea737bcdf5735f2a79724ae?d=identicon)[volodymyr68](/maintainers/volodymyr68)

---

Top Contributors

[![v-senchenko](https://avatars.githubusercontent.com/u/188170949?v=4)](https://github.com/v-senchenko "v-senchenko (1 commits)")

---

Tags

apicrmintegrationnethunt

### Embed Badge

![Health badge](/badges/volodymyr68-keycrm-php-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/volodymyr68-keycrm-php-sdk/health.svg)](https://phpackages.com/packages/volodymyr68-keycrm-php-sdk)
```

###  Alternatives

[dotzero/yii2-amocrm

Расширение для Yii Framework 2 реализующее клиент для работы с API amoCRM

1639.7k](/packages/dotzero-yii2-amocrm)[lasserafn/laravel-economic

Economic REST wrapper for Laravel

1118.5k](/packages/lasserafn-laravel-economic)[lasserafn/php-dinero

Dinero REST wrapper for PHP

115.2k](/packages/lasserafn-php-dinero)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
