Download the PHP package sebbmeyer/php-microsoft-teams-connector without Composer

On this page you can find all versions of the php package sebbmeyer/php-microsoft-teams-connector. 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 php-microsoft-teams-connector

PHP Microsoft Teams Connector

A PHP package to send notifications to Microsoft Teams by using "Incoming Webhook". The aim of this package is to create your own cards and simply send notifications to your desired channel. At the moment this package supports the following formats: MessageCard, AdaptiveCard and HeroCard.

Package Installation - Composer

You can install the package via composer:

Usage

When you want to send a simple notification to you channel, you can easily create a SimpleCard and send it via the TeamConnector

MessageCard

To send a MessageCard you can use the provided CustomCard class and add a color, facts, images, an activity, actions or a summary to it.

Or you can create your own cards for every purpose you need, just extend the AbstractCard class and implement the getMessage() function. This is an example of a Laravel Forge deployment card

AdaptiveCard

You can almost every element you can find here except Action.Submit and as a consequence Input elements are useless at the moment. Currently it can be used in two ways:

1) Passing data as an array, you can design it how you want to. The data array can contain the following keys at the top level body, actions, selectAction, fallbackText, backgroundImage, minHeight, speak, lang and verticalContentAlignment. The properties type, version and $schema are set by the BaseAdaptiveCard.

2) Using the CustomAdaptiveCard which currently only handles TextBlock and Image elements, and Action.OpenUrl. The CustomAdaptiveCard is still in development and I will add the missing card elements, containers and actions soon.

HeroCard

The package also support the HeroCard which is described here. Note: The card has an images property that is a type of array of images, but only one card is shown. You can use the HeroCard like this:

Testing

The test setup is very basic at the moment. There is only one test script available right now.

Prerequisites

Run tests

License

This PHP Microsoft Teams connector is open-sourced software licensed under the MIT license


All versions of php-microsoft-teams-connector with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.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 sebbmeyer/php-microsoft-teams-connector contains the following files

Loading the files please wait ....