Receiving messages from matrix

This commit is contained in:
2024-06-10 09:18:59 +10:00
parent 61cfb773e2
commit 86995b03a8
13 changed files with 455 additions and 123 deletions

13
config/matrix.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
/**
* Matrix integration configuration
*/
return [
'server' => ENV('MATRIX_SERVER'),
'as_token' => ENV('MATRIX_AS_TOKEN'),
'hs_token' => ENV('MATRIX_HS_TOKEN'),
'rooms' => [
// '!bbXofZepRYOhKjihLH:matrix.dege.au' => 'PVT_TEST',
]
];