-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 831 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 831 Bytes
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
{
"name": "phprtc/phprtc",
"description": "PHP Realtime Communication",
"type": "project",
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5",
"swoole/ide-helper": "^4.8",
"phprtc/watcher": "^0.1.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"authors": [
{
"name": "ahmard",
"email": "ahmard.mu@gmail.com"
}
],
"require": {
"guzzlehttp/psr7": "^2.1",
"nette/utils": "^3.2",
"symfony/var-dumper": "^5.3",
"phprtc/contracts": "dev-master",
"phprtc/http-router": "dev-master",
"phprtc/utils": "dev-master",
"phprtc/server": "dev-master",
"phprtc/websocket": "dev-master",
"phprtc/http": "dev-master",
"phprtc/console": "dev-main",
"vlucas/phpdotenv": "^5.4"
},
"scripts": {
"analyse": "phpstan analyse",
"test": "phpunit"
}
}