-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
132 lines (132 loc) · 3.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "fastybird/homekit-connector",
"type": "fastybird-connector",
"description": "FastyBird IoT connector for HomeKit Accessory Protocol",
"keywords": [
"php",
"iot",
"nette",
"reactphp",
"fb",
"homekit",
"hap-python",
"fastybird",
"connector"
],
"homepage": "https://www.fastybird.com",
"license": "Apache-2.0",
"authors": [
{
"name": "FastyBird s.r.o.",
"email": "[email protected]",
"homepage": "https://www.fastybird.com"
},
{
"name": "Adam Kadlec",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/FastyBird/fastybird/issues",
"source": "https://github.com/FastyBird/homekit-connector"
},
"require": {
"php": ">=8.2.0",
"ext-gmp": "*",
"ext-pcntl": "*",
"ext-sockets": "*",
"ext-sodium": "*",
"brick/math": "^0.10",
"contributte/console": "^0.9",
"contributte/monolog": "^0.5",
"contributte/translation": "^2.0",
"cweagans/composer-patches": "^1.7",
"evenement/evenement": "^3.0",
"fastybird/application": "dev-main",
"fastybird/devices-module": "dev-main",
"fastybird/exchange": "dev-main",
"fastybird/metadata-library": "dev-main",
"fastybird/tools": "dev-main",
"hashids/hashids": "^4.1",
"ipub/slim-router": "^0.2",
"leigh/curve25519": "^0.1",
"nette/di": "^3.2",
"orisai/object-mapper": "^0.2",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0",
"endroid/qr-code": "4.5",
"react/async": "^4.0",
"react/datagram": "^1.8",
"react/dns": "^1.10",
"react/http": "^1.7",
"react/promise": "^3",
"symplify/vendor-patches": "^11.2",
"simplito/elliptic-php": "^1.0",
"symfony/event-dispatcher": "^7.0",
"z4kn4fein/php-semver": "^2.0"
},
"require-dev": {
"brianium/paratest": "^7.3",
"dg/bypass-finals": "^1.4",
"infection/infection": "^0.27",
"orisai/coding-standard": "^3.2",
"pds/skeleton": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-nette": "^1.1",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^10.0",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"tracy/tracy": "^2.9"
},
"autoload": {
"psr-4": {
"FastyBird\\Connector\\HomeKit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FastyBird\\Connector\\HomeKit\\Tests\\Cases\\Unit\\": "tests/cases/unit",
"FastyBird\\Connector\\HomeKit\\Tests\\Tools\\": "tests/tools"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true,
"php-http/discovery": false
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"patches": {
"nettrine/orm": {
"Enable connection overrides": "https://raw.githubusercontent.com/FastyBird/libraries-patches/master/nettrine-orm-src-managerregistry-php.patch"
},
"react/event-loop": {
"Bug: Use native return type": "https://raw.githubusercontent.com/FastyBird/libraries-patches/master/react-event-loop-src-loop-php.patch"
},
"dg/bypass-finals": {
"Bug: mkdir check": "https://raw.githubusercontent.com/FastyBird/libraries-patches/master/dg-bypass-finals-src-nativewrapper-php.patch"
}
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mathsolver/mathsolver.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}