fiyo/mattermost

This package is abandoned and no longer maintained. No replacement package was suggested.

Php Wrapper to interact with Mattermost API https://api.mattermost.com/

1.4.0 2022-01-05 11:31 UTC

This package is auto-updated.

Last update: 2022-06-10 09:08:10 UTC


README

PHP wrapper for Mattermost Api

Installation

composer require onderdelenwinkelnl/mattermost

Authentication

Authentication can be handled via username / password

$username = '';
$password = '';

$session = (new Session())
    ->fromLogin($username, $password);

Or it can be handled by using personal access tokens

$accessToken = '';

$session = (new Session())
    ->fromPersonalAccessToken($accessToken);

Now setup the client with the session you've just created:

$uri = ''; // Mattermost uri incl. port (f.e. https://mattermost.acme.com:443)
$client = new Client($session, $uri);

Examples

You can find examples for every single API request in examples

Teams
Users
Channels
Posts