Download the PHP package kopitar/laravel-teams-logger without Composer

On this page you can find all versions of the php package kopitar/laravel-teams-logger. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-teams-logger

Laravel Teams Logger

Latest Version on Packagist GitHub Tests Action Status Total downloads

Log handler for Laravel for sending log messages to Microsoft Teams with the Teams Incoming Webhook Connector.

Tested on:

Features

Installation

Require this package with composer.

Configuration

After installing the package using composer, create a new custom channel in config/logging.php:

Copy teams_logger.php config file from this package to your Laravel config folder with the following command:

Add TEAMS_WEBHOOK_URL variable to your .env file with the URL provided by your Microsoft Teams Connector. (See MS Teams Documentation for more information on where to get your webhook URL).

There are additional .env variables for this package that are optional and have default values. The names of these variables can be found in config/teams_logger.php and on the list bellow. These optional .env variables provide a way for you to change number of retries, disable avatars, set a default message type etc.

To change colors or avatar images you need to replace the values found for each log level in config/teams_logger.php.

Usage

Simple type:

To send a simple style log message to Teams use the following code (assuming type is configured to simple):

Result:

Card type:

To send a card style log message to Teams use the following code (assuming type is configured to card and use_avatar is set to true):

Result:

Json type:

To send any style log messages to Teams you can also simply use JSON formatted data (assuming type is configured to json):

This example would produce a simple log message with a themeColor of #df0087

Result:

Advanced Usage

1. Override configuration

Almost any configuration value can be overriden on any log message by defining a new value in the second parameter. The simplest example would be overriding the type setting. If your config says to use simple type for your log messages but you want to send a card type at a specific place in your code you can do this like in the example below:

Other possible configuration overrides are listed in the example below:

This sets type to 'card', activityTitle to 'Alternative title', sets the themeColor to blue and disables avatar image and markdown.

Result:

If sending messages of simple type the only config value you are able to override is themeColor. Markdown is used by default and cannot be disabled!

2. Facts

When using 'card' type you can also pass a facts parameter which needs to be an array. The contents of this array are then rendered as a key:value list in the card message.

Result:

3. Actions

When using 'card' type you can also pass an actions parameter which needs to be an array. Actions provide a way for you to include a potentialAction property in your message which is an array of actions which add interactive actions in your messages like adding comments, changing statuses, opening links etc.

Read Actions documentation on learn.microsoft.com for more information!

Result:

Preview (simple type)

Preview (card type)

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

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


All versions of laravel-teams-logger with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
ext-curl Version *
monolog/monolog Version ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package kopitar/laravel-teams-logger contains the following files

Loading the files please wait ....