-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.03 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "triangle/database",
"description": "Triangle Database Component",
"type": "library",
"keywords": [
"localzet",
"Triangle",
"Database"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"role": "Developer",
"name": "Ivan Zorin",
"email": "creator@localzet.com",
"homepage": "https://github.com/localzet"
}
],
"support": {
"email": "support@localzet.com",
"source": "https://github.com/Triangle-org/Database"
},
"autoload": {
"psr-4": {
"Triangle\\": "",
"Triangle\\Database\\": "src"
}
},
"require": {
"php": "^8.1",
"triangle/engine": "^8.1",
"illuminate/database": "~11.19.0",
"illuminate/pagination": "~11.19.0",
"illuminate/events": "~11.19.0",
"symfony/var-dumper": "~7.1.0"
},
"conflict": {
"illuminate/database": ">=12.0",
"illuminate/pagination": ">=12.0",
"illuminate/events": ">=12.0",
"symfony/var-dumper": ">=8.0"
},
"suggest": {
"mongodb/laravel-mongodb": "For MongoDB Driver"
}
}