This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
81 lines (77 loc) · 2.19 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "localzet/framex",
"description": "Triangle Engine (FrameX)",
"type": "library",
"keywords": [
"localzet",
"Triangle"
],
"license": "GPL-3.0-only",
"authors": [
{
"name": "Ivan Zorin",
"email": "[email protected]",
"homepage": "https://www.localzet.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/Triangle-org/Engine"
},
"funding": [
{
"type": "other",
"url": "https://www.tinkoff.ru/cf/Ad5MBNhodod"
}
],
"suggest": {
"ext-curl": "For HttpClient",
"ext-json": "For support JSON",
"ext-event": "For better performance",
"ext-mysqli": "For support MySQL",
"ext-mongodb": "For support MongoDB"
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-mysqli": "*",
"localzet/server": "v2.2.2",
"localzet/psr7": "*",
"psr/container": ">=1.0",
"nikic/fast-route": "^1.3",
"monolog/monolog": "^2.0",
"jenssegers/blade": "^1.4.0",
"topthink/think-template": "^2.0.8",
"twig/twig": "^3.3.10",
"guzzlehttp/guzzle": "^7.4.5",
"illuminate/database": "^8.0",
"illuminate/pagination": "*",
"illuminate/events": "^8.0",
"illuminate/support": "^8.0",
"illuminate/container": "^8.0",
"symfony/deprecation-contracts": "^2.1|^3",
"symfony/polyfill-mbstring": "~1.0",
"symfony/service-contracts": "^1.1|^2|^3",
"symfony/string": "^5.4|^6.0",
"symfony/var-dumper": "^6.1",
"doctrine/annotations": "^1.13",
"php-di/php-di": "^6.4",
"mongodb/mongodb": "^1.6",
"league/event": "^2.1"
},
"autoload": {
"psr-4": {
"localzet\\FrameX\\": "src/",
"support\\": "src/support/"
}
},
"extra": {
"laravel": {
"providers": [
"support\\mongodb\\MongodbServiceProvider",
"support\\mongodb\\MongodbQueueServiceProvider"
]
}
}
}