-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 939 Bytes
/
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": "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.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"authors": [
{
"name": "ahmard",
"email": "[email protected]"
}
],
"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",
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}