forked from localzet-archive/FrameX-Public
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.46 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.46 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
{
"name": "triangle/engine",
"description": "Low-level HTTP engine for Triangle Framework",
"type": "library",
"keywords": [
"localzet",
"Triangle"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"role": "Developer",
"name": "Ivan Zorin",
"email": "creator@localzet.ru",
"homepage": "https://github.com/localzet"
},
{
"role": "Community",
"name": "Localzet Group",
"email": "community@localzet.com",
"homepage": "https://www.localzet.com"
}
],
"support": {
"email": "support@localzet.com",
"source": "https://github.com/Triangle-org/Engine"
},
"suggest": {
"ext-mysqli": "For MySQL support",
"ext-redis": "For Redis support",
"ext-mongodb": "For MongoDB logging"
},
"require": {
"php": "^8.1",
"ext-intl": "*",
"ext-json": "*",
"localzet/server": "^4",
"monolog/monolog": "^2.0",
"psr/container": "^1.0|^2.0",
"symfony/translation": "~6.0.0",
"symfony/cache": "~6.0.0"
},
"conflict": {
"symfony/translation": ">=7.0",
"symfony/cache": ">=7.0"
},
"require-dev": {
"rector/rector": "*"
},
"autoload": {
"psr-4": {
"Triangle\\Engine\\": "src",
"Triangle\\Annotation\\": "src/Annotation",
"Triangle\\Exception\\": "src/Exception",
"Triangle\\Services\\": "src/Services",
"support\\": "src/Support/",
"Support\\": "src/Support/"
},
"files": [
"src/functions.php"
]
}
}