-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.15 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "stefanak-michal/thingsdb-php",
"description": "PHP connector for ThingsDB",
"keywords": ["php", "thingsdb", "socket"],
"homepage": "https://github.com/stefanak-michal/thingsdb-php",
"type": "library",
"readme": "README.md",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"rybakit/msgpack": "^0.9.1",
"ext-mbstring": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^11"
},
"support": {
"issues": "https://github.com/stefanak-michal/thingsdb-php/issues",
"source": "https://github.com/stefanak-michal/thingsdb-php",
"docs": "https://docs.thingsdb.io/"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/michalstefanak"
}
],
"authors": [
{
"name": "Michal Stefanak",
"role": "Developer",
"homepage": "https://www.linkedin.com/in/michalstefanak/"
}
],
"autoload": {
"psr-4": {
"ThingsDB\\": "src/",
"ThingsDB\\tests\\": "tests/"
}
}
}