ejtj3 / teams
A simple PHP package for sending messages to MS teams
Installs: 2 074
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.2.5 | ^8.0
- ext-json: *
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: ^8.1
This package is auto-updated.
Last update: 2021-12-04 11:01:24 UTC
README
Warning: This package has moved to an other repository: https://github.com/skrepr/teams-connector
A very simple PHP package for sending messages to Microsoft Teams with incoming webhooks, focused on ease-of-use and elegant syntax.
- Symfony integration: Teams bundle
Requirements
- PHP 7.2+
Installation
You can install the package using the Composer package manager. You can install it by running this command in your project root:
composer require ejtj3/teams
Then [create an incoming webhook](incoming webhooks) on your Microsoft teams channel for the package to use.
Basic Usage
Create a simple card
<?php declare(strict_types=1); use EJTJ3\Teams\Card; use EJTJ3\Teams\Client; $client = new Client('https://...'); $card = (new Card('Larry Bryant created a new task')) ->setText('Yes, he did') ->setThemeColor(Card::STATUS_DEFAULT) ->setTitle('Adding Title to the card'); $client->send($card);
Adding a section
<?php declare(strict_types=1); use EJTJ3\Teams\Card; use EJTJ3\Teams\Section; $card = new Card('Larry Bryant created a new task'); $section = (new Section('Larry Bryant created a new task')) ->setActivitySubtitle('On Project Tango') ->setActivityImage('https://teamsnodesample.azurewebsites.net/static/img/image5.png') ->addFact('Assigned to', 'Unassigned') ->addFact('Due date', 'Mon May 01 2017 17:07:18 GMT-0700 (Pacific Daylight Time)'); $card->addSection($section);
Adding actions & inputs to the card
<?php declare(strict_types=1); use EJTJ3\Teams\Card; use EJTJ3\Teams\Actions\ActionCard; use EJTJ3\Teams\Actions\HttpPostAction; use EJTJ3\Teams\Inputs\TextInput; $card = new Card('Larry Bryant created a new task'); $actionCard = (new ActionCard('Add a comment')) ->addInput(new TextInput('comment', 'Add a comment here for this task')) ->addAction(new HttpPostAction('Add comment', 'http://...')); $card->addPotentialAction($actionCard);