-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.65 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.65 KB
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
{
"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": "^8.0",
"ext-json": "*",
"ext-fileinfo": "*",
"cboden/ratchet": "^0.4.4",
"kevinlebrun/colors.php": "^1.0",
"react/http": "^1.8",
"react/filesystem": "^0.1.2",
"voryx/websocketmiddleware": "^2.0",
"vlucas/phpdotenv": "^5.5",
"symfony/console": "^6.2",
"clue/reactphp-sqlite": "^1.5",
"symfony/validator": "^6.2",
"wyrihaximus/react-http-middleware-webroot-preload": "^2.3",
"firebase/php-jwt": "^6.3",
"ahmard/quick-route": "^3.9",
"nesbot/carbon": "^2.64",
"ahmard/reactphp-querylist": "^0.0.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Server\\": "src/",
"Database\\": "database/"
}
},
"scripts": {
"post-autoload-dump": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"file_exists('storage/cache') || mkdir('storage/cache');\"",
"@php -r \"file_exists('storage/cache/route') || mkdir('storage/cache/route');\"",
"@php -r \"file_exists('storage/logs') || mkdir('storage/logs');\""
],
"analyse": "phpstan analyse",
"analyze": "@analyse"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"symfony/var-dumper": "^6.2"
},
"config": {
"allow-plugins": {
"wyrihaximus/composer-update-bin-autoload-path": true
}
}
}