├── .github └── workflows │ └── php.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── doc └── .gitignore ├── matrix ├── Matrix.php └── core │ ├── Admin_session.php │ ├── Matrix_client.php │ ├── Matrix_exception.php │ ├── Repository.php │ ├── Room.php │ ├── Session.php │ ├── common.php │ ├── net │ └── HTTP_client.php │ └── types │ ├── Content_URI.php │ └── ID.php └── tests ├── AdminSessionTest.php ├── CommonTest.php ├── ContentURITest.php ├── HTTPClientTest.php ├── IDTest.php ├── MatrixTest.php ├── RoomTest.php └── SessionTest.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/composer.json -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /matrix/Matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/Matrix.php -------------------------------------------------------------------------------- /matrix/core/Admin_session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/Admin_session.php -------------------------------------------------------------------------------- /matrix/core/Matrix_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/Matrix_client.php -------------------------------------------------------------------------------- /matrix/core/Matrix_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/Matrix_exception.php -------------------------------------------------------------------------------- /matrix/core/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/Repository.php -------------------------------------------------------------------------------- /matrix/core/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/Room.php -------------------------------------------------------------------------------- /matrix/core/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/Session.php -------------------------------------------------------------------------------- /matrix/core/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/common.php -------------------------------------------------------------------------------- /matrix/core/net/HTTP_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/net/HTTP_client.php -------------------------------------------------------------------------------- /matrix/core/types/Content_URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/types/Content_URI.php -------------------------------------------------------------------------------- /matrix/core/types/ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/matrix/core/types/ID.php -------------------------------------------------------------------------------- /tests/AdminSessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/AdminSessionTest.php -------------------------------------------------------------------------------- /tests/CommonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/CommonTest.php -------------------------------------------------------------------------------- /tests/ContentURITest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/ContentURITest.php -------------------------------------------------------------------------------- /tests/HTTPClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/HTTPClientTest.php -------------------------------------------------------------------------------- /tests/IDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/IDTest.php -------------------------------------------------------------------------------- /tests/MatrixTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/MatrixTest.php -------------------------------------------------------------------------------- /tests/RoomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/RoomTest.php -------------------------------------------------------------------------------- /tests/SessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artyom-poptsov/matrix-php/HEAD/tests/SessionTest.php --------------------------------------------------------------------------------