-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
120 lines (120 loc) · 3.23 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
{
"name": "fastybird/web-server-plugin",
"type": "fastybird-plugin",
"description": "FastyBird IoT simple web server plugin with ReactPHP & Apache or Nginx support",
"keywords": [
"plugin",
"php",
"ssl",
"http",
"middleware",
"webserver",
"nette",
"routing",
"reactphp",
"fb",
"psr-7",
"fastybird",
"reactphp-http"
],
"homepage": "https://www.fastybird.com",
"license": "Apache-2.0",
"authors": [
{
"name": "FastyBird s.r.o.",
"email": "code@fastybird.com",
"homepage": "https://www.fastybird.com"
},
{
"name": "Adam Kadlec",
"email": "adam.kadlec@fastybird.com"
}
],
"support": {
"email": "code@fastybird.com",
"issues": "https://github.com/FastyBird/fastybird/issues",
"source": "https://github.com/FastyBird/web-server-plugin"
},
"require": {
"php": ">=8.2.0",
"cweagans/composer-patches": "^1.7",
"fastybird/application": "dev-main",
"fastybird/metadata-library": "dev-main",
"fastybird/tools": "dev-main",
"fig/http-message-util": "^1.1",
"ipub/slim-router": "^0.2",
"nette/bootstrap": "^3.2",
"nette/di": "^3.2",
"nette/utils": "^4.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^3.0",
"react/event-loop": "^1.3",
"react/http": "^1.7",
"react/promise": "^3",
"react/socket": "^1.12",
"sunrise/http-message": "^3.0",
"symfony/console": "^6.0",
"symfony/event-dispatcher": "^7.0",
"symplify/vendor-patches": "^11.2"
},
"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-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"
},
"suggest": {
"fastybird/json-api": "Handle request with {JSON:API} schemas",
"fastybird/simple-auth": "Handle basic user authentication & authorization"
},
"autoload": {
"psr-4": {
"FastyBird\\Plugin\\WebServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FastyBird\\Plugin\\WebServer\\Tests\\Cases\\Unit\\": "tests/cases/unit"
}
},
"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": {
"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
}