PHPackages                             allejo/php-pulse - 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. allejo/php-pulse

AbandonedArchivedLibrary[API Development](/categories/api)

allejo/php-pulse
================

A wrapper for working with the monday.com (formerly known as DaPulse) API

0.3.4(7y ago)109975[2 issues](https://github.com/allejo/PhpPulse/issues)MITPHPPHP &gt;=5.4.0

Since Nov 2Pushed 5y ago1 watchersCompare

[ Source](https://github.com/allejo/PhpPulse)[ Packagist](https://packagist.org/packages/allejo/php-pulse)[ Docs](http://docs.allejo.io/PhpPulse/)[ RSS](/packages/allejo-php-pulse/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (10)Dependencies (3)Versions (17)Used By (0)

> This library is officially end-of-life. It does not and will not support the new GraphQL API.
>
> [\#20](https://github.com/allejo/PhpPulse/issues/20)

---

PhpPulse
========

[](#phppulse)

[![Stable Release](https://camo.githubusercontent.com/6eee8272a9a62c836c6c116a7f265bef29f058f930658a454a2c9689f90ef2aa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616c6c656a6f2f7068702d70756c73652e737667)](https://packagist.org/packages/allejo/php-pulse)[![Dev Release](https://camo.githubusercontent.com/a86ced19ec01e1232cae69fd9c26bff4a9ea7e33cbe67bd3ce4c87d2f91f6ae1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f767072652f616c6c656a6f2f7068702d70756c73652e737667)](https://packagist.org/packages/allejo/php-pulse)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/c22f0611117c45bdee2e007587074cd5858bb9fb6da336ecf6e19b882ca5a9b7/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f616c6c656a6f2f50687050756c73652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/allejo/PhpPulse/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/df3f5b00a0d741bfb7eaaf5c321777551f3822226c7ccac0471192f9d537bb7f/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f616c6c656a6f2f50687050756c73652f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/allejo/PhpPulse/?branch=master)

BranchStatus0.3[![Build Status](https://camo.githubusercontent.com/be4deeaa3b114f99440552ac727d66dbb5cd6e355fd1e5c56e10a48423937386/68747470733a2f2f7472617669732d63692e6f72672f616c6c656a6f2f50687050756c73652e7376673f6272616e63683d302e33)](https://travis-ci.org/allejo/PhpPulse)0.4[![Build Status](https://camo.githubusercontent.com/eea44a6aa4dae3bc8348f47b89b006af31feb1555bfff117959e41b3405d289d/68747470733a2f2f7472617669732d63692e6f72672f616c6c656a6f2f50687050756c73652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/allejo/PhpPulse)A PHP wrapper for working with version 1 of the [monday.com API](https://developers.monday.com/).

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

[](#requirements)

PHP 5.5+

- This library may work with with PHP 5.4, however it's no longer supported
- If you need PHP 5.3 or 5.4 support, your best bet is using the 0.2.x branch, however it's no longer supported

Usage
-----

[](#usage)

### Installation

[](#installation)

The recommended method of using this project is through [Composer](https://getcomposer.org/). However, PHAR archives are available in the [Releases page](https://github.com/allejo/PhpPulse/releases) as well.

```
composer require allejo/php-pulse
```

Be sure to `require` your autoloader or the PHAR archive directly when using this library.

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

// or

require 'phppulse.phar';
```

### Accessing Boards

[](#accessing-boards)

```
use allejo\DaPulse\PulseBoard;

// Set our API key to access the API
PulseBoard::setApiKey("monday.com API Key");

// Get all of our boards
$boards = PulseBoard::getBoards();

foreach ($boards as $board)
{
    echo "Board Name: {$board->getName()}";
    echo "Board Description: {$board->getDescription()}";

    // Create a Pulse with the owner of user id 1
    $pulse = $board->createPulse("Sample Pulse Title", 1);
}
```

### Deprecations &amp; Backward Compatibility

[](#deprecations--backward-compatibility)

This project is completely stable but hasn't reached 1.0.0 since there are things that still may change. If any functions are deprecated, they will be removed in the next next minor release; for example, if something has been deprecated in the 0.1.x branch then it will be removed starting with the 0.3.0 release onwards. All deprecations and removals are documented via the `@deprecated` tag in the phpDocs, in the change log, and GitHub releases.

With the exception of deprecated functionality being removed faster during the 0.x stage, this project will do its best to abide by [Symfony's Backward Compatibility promise](http://symfony.com/doc/current/contributing/code/bc.html). This practice is subject to change once this project reaches 1.0.0.

Getting Help
------------

[](#getting-help)

To get help, you may either [create an issue](https://github.com/allejo/PhpPulse/issues) or stop by IRC; I'm available on IRC as "allejo" so feel free to ping me. I recommend creating an issue in case others have the same question but for quick help, IRC works just fine.

To report a bug or request a feature, please submit an issue.

### Documentation

[](#documentation)

I've done my best to document this project and the [generated phpDoc is available](http://docs.allejo.io/PhpPulse/). If you'd like to help with writing documentation or tutorials, I gladly welcome contributions to [this project's wiki](https://github.com/allejo/PhpPulse/wiki).

### IRC

[](#irc)

Channel: **\#sujevo**
Network: irc.freenode.net

License
-------

[](#license)

[MIT](https://github.com/allejo/PhpPulse/blob/master/LICENSE.md)

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 99.2% 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

Every ~86 days

Recently: every ~165 days

Total

15

Last Release

2670d ago

PHP version history (2 changes)0.0.1PHP &gt;=5.3.0

0.3.0PHP &gt;=5.4.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1246453?v=4)[Vladimir Jimenez](/maintainers/allejo)[@allejo](https://github.com/allejo)

---

Top Contributors

[![allejo](https://avatars.githubusercontent.com/u/1246453?v=4)](https://github.com/allejo "allejo (262 commits)")[![keiosweb](https://avatars.githubusercontent.com/u/10880818?v=4)](https://github.com/keiosweb "keiosweb (2 commits)")

---

Tags

dapulsedapulse-apiphpwrapperapidapulsemonday.com

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/allejo-php-pulse/health.svg)

```
[![Health](https://phpackages.com/badges/allejo-php-pulse/health.svg)](https://phpackages.com/packages/allejo-php-pulse)
```

###  Alternatives

[m165437/laravel-blueprint-docs

API Blueprint Renderer for Laravel

22779.5k](/packages/m165437-laravel-blueprint-docs)

PHPackages © 2026

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