forked from Ahmard/reactphp-live-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.08 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
{
"name": "ahmard/reactphp-live-chat",
"description": "A PHP-based live chat system written on top of Ratchet and ReactPHP",
"type": "project",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-fileinfo": "*",
"cboden/ratchet": "^0.4.3",
"kevinlebrun/colors.php": "^1.0",
"ahmard/reactphp-timers": "^1.0",
"react/http": "1.0.0",
"react/filesystem": "0.1.1",
"voryx/websocketmiddleware": "^2.0",
"vlucas/phpdotenv": "^5.1",
"symfony/console": "^5.1",
"clue/reactphp-sqlite": "^1.0.1",
"symfony/event-dispatcher": "^5.1",
"symfony/validator": "^5.1",
"nilportugues/sql-query-builder": "^1.8",
"tightenco/collect": "^8.0",
"wyrihaximus/react-http-middleware-webroot-preload": "^2.0",
"firebase/php-jwt": "^5.2",
"ahmard/preact": "^1.0",
"ahmard/quick-route": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\": "database/"
}
},
"scripts": {
"post-autoload-dump": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}