PHPackages                             nekromoff/pipedrive - 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. nekromoff/pipedrive

AbandonedArchivedLibrary

nekromoff/pipedrive
===================

API client library for the Pipedrive CRM

012PHP

Since Nov 13Pushed 5y ago1 watchersCompare

[ Source](https://github.com/nekromoff/pipedrive-api-php)[ Packagist](https://packagist.org/packages/nekromoff/pipedrive)[ RSS](/packages/nekromoff-pipedrive/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

PipeDrive-api-php
=================

[](#pipedrive-api-php)

PHP API client library for the PipeDrive CRM

Based on Ben Hawker's PipeDrive API that has been not actively developed since 2014.

Only some basic functionality required for my current project has been added. However the basic blocks are to make use of the whole API including file uploading.

Recommend you install this library through composer.

API Docs can be found here:

Example:

```
use Nekromoff\Pipedrive\Pipedrive;

$pipedrive = new Pipedrive(YOUR_API_KEY);

//add user
$person['name'] = 'John Smith';

$person = $pipedrive->persons()->add($person);

//add note to user
$note['content']   = 'example note';
$note['person_id'] = $person['data']['id'];

$pipedrive->notes()->add($note);

//add deal to user
deal['title']      = 'example title';
$deal['stage_id']  = 8;
$deal['person_id'] = $person['data']['id'];

$pipedrive->deals()->add($deal);

//add activity
$activity = array(
                    'subject' => 'Example send brochure',
                    'type' => 'send-brochure',
                    'person_id' => 17686,
                    'user_id' => 190870,
                    'deal_id' => 88,
                    'due_date' => date('Y-m-d')
                    );

$pipedrive->activities()->add($activity);

/*
API endpoints available (see /Library under /src):
Activities
Deals
DealFields
MailThreads
Notes
Organizations
OrganizationFields
Persons
Products
Pipelines
Stages
Users
*/
```

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity31

Early-stage or recently created project

 Bus Factor2

2 contributors hold 50%+ of commits

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.

### Community

Maintainers

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

---

Top Contributors

[![themogly](https://avatars.githubusercontent.com/u/1994672?v=4)](https://github.com/themogly "themogly (16 commits)")[![nekromoff](https://avatars.githubusercontent.com/u/8550349?v=4)](https://github.com/nekromoff "nekromoff (9 commits)")[![lstrz](https://avatars.githubusercontent.com/u/5719065?v=4)](https://github.com/lstrz "lstrz (8 commits)")[![benhawker1](https://avatars.githubusercontent.com/u/5575463?v=4)](https://github.com/benhawker1 "benhawker1 (5 commits)")[![benbridts](https://avatars.githubusercontent.com/u/1301221?v=4)](https://github.com/benbridts "benbridts (1 commits)")[![gwissem-mention](https://avatars.githubusercontent.com/u/3584016?v=4)](https://github.com/gwissem-mention "gwissem-mention (1 commits)")[![tommygnr](https://avatars.githubusercontent.com/u/929392?v=4)](https://github.com/tommygnr "tommygnr (1 commits)")

---

Tags

api-clientphppipedrivepipedrive-api

### Embed Badge

![Health badge](/badges/nekromoff-pipedrive/health.svg)

```
[![Health](https://phpackages.com/badges/nekromoff-pipedrive/health.svg)](https://phpackages.com/packages/nekromoff-pipedrive)
```

PHPackages © 2026

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