1{
2    "name": "meet-kinksters/php-matrix-sdk",
3    "type": "library",
4    "description": "PHP SDK for interacting with Matrix/Synapse.",
5    "keywords": [
6        "Matrix",
7        "Matrix Chat",
8        "Synapse",
9        "PHP"
10    ],
11    "homepage": "https://github.com/meet-kinksters/php-matrix-sdk",
12    "license": "MIT",
13    "authors": [
14        {
15            "name": "Yoann Celton",
16            "email": "aryess@github.com",
17            "homepage": "https://github.com/aryess",
18            "role": "Developer"
19        },
20        {
21            "name": "Brad Jones",
22            "email": "brad@kinksters.dating",
23            "homepage": "https://github.com/bradjones1",
24            "role": "Developer"
25        }
26    ],
27    "replace": {
28        "aryess/phpmatrixsdk": "self.version",
29        "aryess/php-matrix-sdk": "self.version"
30    },
31    "require": {
32        "php": "~7.4|^8",
33        "guzzlehttp/guzzle": "^6.3|^7",
34        "rappasoft/laravel-helpers": "^1.0",
35        "ext-json": "*"
36    },
37    "require-dev": {
38        "phpunit/phpunit" : ">=5.4.3"
39    },
40    "autoload": {
41        "psr-4": {
42            "MatrixPhp\\": "src"
43        }
44    },
45    "autoload-dev": {
46        "psr-4": {
47            "MatrixPhp\\Tests\\": "tests"
48        }
49    },
50    "scripts": {
51        "test": "phpunit"
52    },
53    "extra": {
54        "branch-alias": {
55            "dev-master": "1.0-dev"
56        }
57    },
58    "config": {
59        "sort-packages": true
60    }
61}
62