PHPackages                             renesis-tech/monday-logger - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. renesis-tech/monday-logger

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

renesis-tech/monday-logger
==========================

Monday Logger is a laravel package for monday.com integrations, used to post exceptions to monday board

v1.0.1(6y ago)110MITPHPPHP &gt;=7.1.0

Since Apr 6Pushed 5y ago1 watchersCompare

[ Source](https://github.com/renesis-tech/monday-logger)[ Packagist](https://packagist.org/packages/renesis-tech/monday-logger)[ RSS](/packages/renesis-tech-monday-logger/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (3)DependenciesVersions (4)Used By (0)

Laravel Monday Logger
---------------------

[](#laravel-monday-logger)

Laravel monday logger is laravel plugin to send exception updates to Monday.com

### Installation

[](#installation)

This package is compatible with laravel 5.4+. Package can be installed using composer

```
composer require renesis-tech/monday-logger

```

Register Service Provider in your provider array of `config/app.php`

```
\Renesis\MondayLogger\ServiceProvider\MondayLoggerServiceProvider::class,

```

Add Facade to your `config/app.php`

```
'MondayLogger' => \Renesis\MondayLogger\Facade\MondayLogger::class,

```

### Monday.com Configurations

[](#mondaycom-configurations)

Next you have to set monday.con configurations in `.env` file.

1. Set monday.com V2 API key in .env file with key `MONDAY_API_KEY`
2. Set Monday.com Board ID with key `MONDAY_BOARD_ID`
3. Set Monday's Board group id with key `MONDAY_GROUP_ID`
4. Set `MONDAY_LOGGER_ENABLED` to enable and disable monday.com logger, default is true.

###### !!!Without setting these configuration, package will not work.!!!

[](#without-setting-these-configuration-package-will-not-work)

Here is how you can generate monday.com api v2 key [Monday.com Developers](https://monday.com/developers/v2).

Next you can publish configuration file by using this command

```
php artisan vendor:publish --provider="Renesis\MondayLogger\ServiceProvider\MondayLoggerServiceProvider"

```

It will create configurations file in `config` directory of project with an array.

```
return [
    'board_id' => env('MONDAY_BOARD_ID',null),
    'group_id' => env('MONDAY_GROUP_ID',null),
    'enabled' => true,
    'auth_info' => true
];

```

### Usage

[](#usage)

To log each exception to monday.com call MondayLogger facade report method in report function of `app/Exceptions/Handler.php`

```
public function report(Exception $exception)
    {
        //Enabled Monday Logger Reporting
        MondayLogger::report($exception);
        parent::report($exception);
    }

```

**Important**It will not log if you are using try catch method, You have to manually call MondayLogger report Method in catch case e.g.

```
try{
    //Some Logic Here
}catch (\Exception $e){
    MondayLogger::report($e)
}

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

Every ~0 days

Total

3

Last Release

2223d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/63094526?v=4)[renesis-tech](/maintainers/renesis-tech)[@renesis-tech](https://github.com/renesis-tech)

---

Top Contributors

[![sfkazmi](https://avatars.githubusercontent.com/u/25618543?v=4)](https://github.com/sfkazmi "sfkazmi (10 commits)")

### Embed Badge

![Health badge](/badges/renesis-tech-monday-logger/health.svg)

```
[![Health](https://phpackages.com/badges/renesis-tech-monday-logger/health.svg)](https://phpackages.com/packages/renesis-tech-monday-logger)
```

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.1k](/packages/psr-log)[itsgoingd/clockwork

php dev tools in your browser

5.9k27.6M93](/packages/itsgoingd-clockwork)[graylog2/gelf-php

A php implementation to send log-messages to a GELF compatible backend like Graylog2.

41838.2M137](/packages/graylog2-gelf-php)[bugsnag/bugsnag-psr-logger

Official Bugsnag PHP PSR Logger.

32132.5M2](/packages/bugsnag-bugsnag-psr-logger)[consolidation/log

Improved Psr-3 / Psr\\Log logger based on Symfony Console components.

15462.2M7](/packages/consolidation-log)[datadog/php-datadogstatsd

An extremely simple PHP datadogstatsd client

19124.6M15](/packages/datadog-php-datadogstatsd)

PHPackages © 2026

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