PHPackages                             awcode/monday-php - 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. awcode/monday-php

ActiveLibrary[API Development](/categories/api)

awcode/monday-php
=================

A helper package for using Monday.com API

0151PHP

Since Mar 16Pushed 4y ago2 watchersCompare

[ Source](https://github.com/awcode/monday-php)[ Packagist](https://packagist.org/packages/awcode/monday-php)[ RSS](/packages/awcode-monday-php/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Monday PHP
==========

[](#monday-php)

A helper package for using the Monday.com API in PHP, with optional Laravel facades.

BETA Package
------------

[](#beta-package)

Please note this package is currently in Beta.

Full coverage of Monday API is not yet available, but key functionality is ready. Methods and functions may be subject to change.

If you have requirments outside of the current scope either raise an issue or send a pull request

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

[](#installation)

Install through Composer (currently in Beta, remove dev-master once we move to a stable release)

`composer require "awcode/monday-php" "dev-master"`

Or manually adding

```
{
    "require": {
        "awcode/monday-php": "dev-master"
    }
}
```

Usage
-----

[](#usage)

```
// Set MONDAY_TOKEN=your-monday-api-token in Environment Variable or .env file

// Create new Monday Instance
$monday = new \Awcode\MondayPHP\MondayPHP;

// Create new Monday Board
$board = $monday->createBoard('test_board 123');
// Create new Item in default Group
$board->createItem('test_item 444');
// Create new Group
$group = $board->createGroup('test group 123');
// Create new Item in specific Group
$board->createItem('test_item 666', $group->getId());

// Fetch board by ID
$board = $monday->boards($board->getId())->first();
echo($board->getName().''.$board->getId());
// Get board items
foreach ($board->items() as $item) {
    echo(''.$item->getName());
}

```

### Support and Contributing

[](#support-and-contributing)

This has been built by the team at [AWcode](https://awcode.com), for both our internal needs and to support the PHP developer community. Please run your own tests to ensure that this fits your needs, no warranty or guarantee is provided.

If you have any questions, feedback or issues please raise an Issue on this repository.

Contributors are welcome to submit pull requests for review.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity27

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.

### Community

Maintainers

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

---

Top Contributors

[![mnwalker](https://avatars.githubusercontent.com/u/9032080?v=4)](https://github.com/mnwalker "mnwalker (8 commits)")

### Embed Badge

![Health badge](/badges/awcode-monday-php/health.svg)

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k14](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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