PHPackages                             avaro/placetel-php-client - 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. avaro/placetel-php-client

ActiveLibrary[API Development](/categories/api)

avaro/placetel-php-client
=========================

A PHP client library for the Placetel REST API

0.1.0-beta.1(9mo ago)0261MITPHPPHP ^8.0

Since Oct 3Pushed 9mo agoCompare

[ Source](https://github.com/Avaro-CRM/Placetel-PHP-Client)[ Packagist](https://packagist.org/packages/avaro/placetel-php-client)[ RSS](/packages/avaro-placetel-php-client/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (1)Versions (2)Used By (0)

Placetel PHP Client
===================

[](#placetel-php-client)

[![Packagist Version](https://camo.githubusercontent.com/27139d1d4e4cd5750118986dfc9f9e6bd1976abdcf6633b1b46360d4793714b4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f617661726f2f706c61636574656c2d7068702d636c69656e742e737667)](https://packagist.org/packages/avaro/placetel-php-client)[![License: MIT](https://camo.githubusercontent.com/fdf2982b9f5d7489dcf44570e714e3a15fce6253e0cc6b5aa61a075aac2ff71b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d79656c6c6f772e737667)](LICENSE)[![PHP Version](https://camo.githubusercontent.com/48436a554f115bf4db75b43f443f2900e39e782778e34aaf5618620a9a4d5297/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f617661726f2f706c61636574656c2d7068702d636c69656e742e737667)](https://www.php.net/)

**Placetel PHP Client** is a modern, easy-to-use PHP package for integrating the [Placetel REST API](https://developer.placetel.de/) into your own applications or CRM systems. With this client, you can easily retrieve, create, update, and delete contacts, all through a clean, object-oriented API.

---

Features
--------

[](#features)

- Fully CRUD-capable Contact Repository (`create`, `getById`, `update`, `delete`)
- Modern PHP 8+ design with namespaces and DTOs
- Composer-ready and immediately usable in your own projects

---

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

[](#installation)

Install via Composer:

```
composer require avaro-crm/placetel-php-client
```

Quick Start
-----------

[](#quick-start)

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

use Avaro\Placetel\Client;
use Avaro\Placetel\Entity\Contact;

$client = new Client(getenv('PLACETEL_API_TOKEN'));

// Retrieve all contacts
$contacts = $client->contacts()->all();
foreach ($contacts as $contact) {
    echo $contact->getFirstName() . ' ' . $contact->getLastName() . PHP_EOL;
}

// Create a new contact
$newContact = new Contact(
    firstName: "Anna",
    lastName: "Schmidt",
    email: "anna.schmidt@example.com",
    company: "Avaro GmbH"
);

$created = $client->contacts()->create($newContact);
echo "Contact created with ID: " . $created->getId();

// Update a contact
$created->setEmail("anna.maria@example.com");
$updated = $client->contacts()->update($created);

// Delete a contact
$client->contacts()->delete($updated->getId());
```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance58

Moderate activity, may be stable

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity26

Early-stage or recently created project

 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

273d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/fcec2f1b7299cf187eff1364cf8d442431845a14e202900c2756929f5ff36432?d=identicon)[82912759](/maintainers/82912759)

---

Top Contributors

[![JnHbbBrnng](https://avatars.githubusercontent.com/u/45029139?v=4)](https://github.com/JnHbbBrnng "JnHbbBrnng (7 commits)")

### Embed Badge

![Health badge](/badges/avaro-placetel-php-client/health.svg)

```
[![Health](https://phpackages.com/badges/avaro-placetel-php-client/health.svg)](https://phpackages.com/packages/avaro-placetel-php-client)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M985](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.5M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)

PHPackages © 2026

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