PHPackages                             sh-ogawa/laravel-teams-logging - 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. sh-ogawa/laravel-teams-logging

Abandoned → [kroyeeg/laravel-teams-logging](/?search=kroyeeg%2Flaravel-teams-logging)ArchivedLibrary[Logging &amp; Monitoring](/categories/logging)

sh-ogawa/laravel-teams-logging
==============================

Laravel handler to sending messages to Microsoft Teams using the Incoming Webhook connector

v2.0.1(6y ago)05781MITPHPPHP ^7.1

Since Oct 25Pushed 6y agoCompare

[ Source](https://github.com/sh-ogawa/laravel-teams-logging)[ Packagist](https://packagist.org/packages/sh-ogawa/laravel-teams-logging)[ RSS](/packages/sh-ogawa-laravel-teams-logging/feed)WikiDiscussions master Synced 1mo ago

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

laravel-teams-logging
=====================

[](#laravel-teams-logging)

Laravel handler to sending messages to Microsoft Teams using the Incoming Webhook connector.

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

[](#installation)

Require this package with composer.

```
$ composer require sh-ogawa/laravel-teams-logging
```

Integration
-----------

[](#integration)

Package tested and worked with Laravel and Lumen framework (5.7+).

**Laravel**: After installation using composer finishes up, you'll have to add the following line to your `config/app.php`:

```
Ooga04\LaravelTeamsLogging\LoggerServiceProvider::class
```

**Lumen**: For Lumen, you'll have to add the following line to your `bootstrap/app.php`:

```
$app->register(Ooga04\LaravelTeamsLogging\LoggerServiceProvider::class);
```

**Laravel**: Then copy `teams` config file from laravel-teams-logging to your config folder:

```
$ php artisan vendor:publish --provider="Ooga04\LaravelTeamsLogging\LoggerServiceProvider"
```

**Lumen**: For Lumen, you need to copy file manually to your config folder and enable it in `bootstrap/app.php`:

```
$app->configure('teams');
```

Create a [custom channel](https://laravel.com/docs/master/logging#creating-custom-channels) using laravel logging file or create new logging config file for lumen.

Add this configuration to `config/logging.php` file

```
'teams' => [
    'driver'    => 'custom',
    'via'       => \Ooga04\LaravelTeamsLogging\LoggerChannel::class,
    'level'     => 'debug',
    'url'       => env('INCOMING_WEBHOOK_URL'),
    'style'     => 'simple',    // Available style is 'simple' and 'card', default is 'simple'
],
```

or simply add name to specify different project name for each connector.

```
'teams' => [
    'driver'    => 'custom',
    'via'       => \Ooga04\LaravelTeamsLogging\LoggerChannel::class,
    'level'     => 'debug',
    'url'       => env('INCOMING_WEBHOOK_URL'),
    'style'     => 'simple',    // Available style is 'simple' and 'card', default is 'simple'
    'name'      => 'Dummy Project'
],
```

There are 2 available styles for microsoft teams message, using simple and card. You can see card style in results style which is difference from simple style.

After added configs to your `config/logging.php` file, add `INCOMING_WEBHOOK_URL` variable to your `.env` file with connector url from your microsoft teams connector. Please read [microsoft teams](https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/connectors/connectors-using) document to find your connector url.

Usage
-----

[](#usage)

To send a simple error message to teams channel, you kindly use script below:

```
Log::channel('teams')->error('Error message');
```

Or you can include additional info to card message using log context.

```
Log::channel('teams')->error('Error message', [
    'Assigned to' => 'Unassigned',
    'stack trace' => $e->getTraceAsString(), // could not set getTrace(), because may be upper limit fact value's section
    'nested array' => [ // output json_encode string
        'key1' => 'value1',
        'key2' => 'value2',
    ],
]);
```

When using simple style, log context will ignore from message.

You can also add `teams` to the default `stack` channel so all errors are automatically send to the `teams` channel.

```
'channels' => [
    'stack' => [
        'driver' => 'stack',
        'channels' => ['single', 'teams'],
    ],
],
```

Results
-------

[](#results)

Here are some results of notifications sent to microsoft teams channel using card style.

License
-------

[](#license)

This laravel-teams-logging package is available under the MIT license. See the LICENSE file for more info.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~46 days

Recently: every ~23 days

Total

11

Last Release

2297d ago

Major Versions

v0.1.1 → v1.0.02018-10-25

v1.2.0 → v2.0.02020-01-27

PHP version history (2 changes)v0.1.0PHP ^7.0

v2.0.1PHP ^7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/dd7203cc69079f1e17ee943e53b5580558eb4cd60da09bb2ae5983fb033ebaa9?d=identicon)[sh-ogawa](/maintainers/sh-ogawa)

---

Top Contributors

[![stampubolon](https://avatars.githubusercontent.com/u/37098202?v=4)](https://github.com/stampubolon "stampubolon (10 commits)")[![margatampu](https://avatars.githubusercontent.com/u/3712334?v=4)](https://github.com/margatampu "margatampu (9 commits)")[![sh-ogawa](https://avatars.githubusercontent.com/u/9303287?v=4)](https://github.com/sh-ogawa "sh-ogawa (7 commits)")

### Embed Badge

![Health badge](/badges/sh-ogawa-laravel-teams-logging/health.svg)

```
[![Health](https://phpackages.com/badges/sh-ogawa-laravel-teams-logging/health.svg)](https://phpackages.com/packages/sh-ogawa-laravel-teams-logging)
```

###  Alternatives

[symfony/monolog-bridge

Provides integration for Monolog with various Symfony components

2.6k189.7M258](/packages/symfony-monolog-bridge)[rollbar/rollbar

Monitors errors and exceptions and reports them to Rollbar

33723.7M82](/packages/rollbar-rollbar)[illuminate/log

The Illuminate Log package.

6224.3M518](/packages/illuminate-log)[honeybadger-io/honeybadger-php

Honeybadger PHP library

381.5M4](/packages/honeybadger-io-honeybadger-php)[graycore/magento2-stdlogging

A Magento 2 module that changes all logging handlers to stdout

2382.6k](/packages/graycore-magento2-stdlogging)

PHPackages © 2026

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