updivision/matrix-php-sdk is a Laravel package for matrix sdk for php.
It currently has 26 GitHub stars and 31.397 downloads on Packagist (latest version v1.0.7).
Install it with composer require updivision/matrix-php-sdk.
Discover more Laravel packages by updivision
or browse all Laravel packages to compare alternatives.
Last updated
This is a package for using a Matrix chat client into a Laravel Project.
You can find the Matrix Client-Server API documentation on Matrix.org website.
To get started with Matrix PHP SDK, use Composer to add the package to your project's dependencies:
composer require updivision/matrix-php-sdk
After installing the Matrix PHP SDK, register the Updivision\Matrix\MatrixServiceProvider in your config/app.php configuration file:
'providers' => [
// Other service providers...
Updivision\Matrix\MatrixServiceProvider::class,
],
Also, add the Matrix facade to the aliases array in your app configuration file:
'Matrix' => Updivision\Matrix\Facades\Matrix::class,
Thank you for considering contributing to the Matrix PHP SDK! Please read CONTRIBUTING for details.
In order to ensure that the community is welcoming to all, please review and abide by the Code of Conduct.
Matrix PHP SDK is open-sourced software licensed under the MIT license