-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.54 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.54 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "laralord-project/server",
"description": "Laralord enables multi-tenancy for any stateless Laravel application without requiring code updates.\nIt is an OpenSwoole wrapper designed to provide a high-performance, multi-tenant server setup for Laravel Application.",
"type": "project",
"homepage": "https://laralord.dev/",
"license": "Apache-2.0",
"authors": [
{
"name": "Vitalii Liubimov",
"email": "vitalii@liubimov.org"
}
],
"require": {
"php": "^8.2|^8.3|^8.4",
"ext-openswoole": "^22.0|^25.0",
"ext-inotify": "*",
"ext-pcntl": "*",
"ext-sysvmsg": "*",
"ext-redis": "*",
"ext-fileinfo": "*",
"vlucas/phpdotenv": "^5.6",
"openswoole/core": "^22.1",
"openswoole/ide-helper": "^22.1",
"guzzlehttp/guzzle": "^7.8",
"monolog/monolog": "^3.6",
"bamarni/composer-bin-plugin": "^1.8",
"aws/aws-sdk-php": "^3.324"
},
"autoload": {
"psr-4": {
"Server\\": "src/"
}
},
"bin": [
"bin/laralord"
],
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices"
},
"extra": {
"aws/aws-sdk-php": [
"S3"
]
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"replace": {
"symfony/polyfill-php80": "*",
"symfony/polyfill-php83": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.4"
}
}