-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) · 3.14 KB
/
composer.json
File metadata and controls
112 lines (112 loc) · 3.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "maslosoft/mangan",
"version": "7.0.6",
"description": "MongoDB Object Document Mapper (ODM)",
"homepage": "https://maslosoft.com/mangan/",
"license": [
"AGPL-3.0-only",
"proprietary"
],
"type": "library",
"keywords": [
"php",
"mongodb",
"orm",
"odm",
"mangan",
"persister",
"database"
],
"authors": [
{
"name": "Peter Maselkowski",
"email": "peter@maslosoft.com",
"homepage": "https://maslosoft.com",
"role": "Developer"
},
{
"name": "Ianar\u00e9 S\u00e9vi",
"role": "Developer"
},
{
"name": "Dariusz G\u00f3recki",
"email": "darek.krk@gmail.com",
"role": "Developer"
},
{
"name": "Invenzzia Group",
"homepage": "http://www.invenzzia.org",
"role": "Developer"
},
{
"name": "Philippe Gaultier",
"email": "pgaultier@ibitux.com",
"role": "Developer"
},
{
"name": "Ibitux",
"homepage": "http://www.ibitux.com",
"role": "Developer"
},
{
"name": "CleverIT",
"homepage": "http://www.cleverit.com.pl",
"role": "Developrt"
},
{
"name": "Florian Fackler",
"email": "florian.fackler@mintao.com",
"homepage": "http://mintao.com"
}
],
"support": {
"issues": "https://github.com/Maslosoft/Mangan/issues",
"docs": "https://maslosoft.com/mangan/docs/"
},
"require": {
"php": ">= 8.2",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-mongodb": "*",
"mongodb/mongodb": "^1 | ^2",
"maslosoft/addendum": "^7|^8",
"maslosoft/cli-shared": "^1|^2|^3",
"maslosoft/embedi": "^2|^3",
"maslosoft/gazebo": "^2|^3",
"maslosoft/signals": "^4|^5",
"masterexploder/phpthumb": "^2",
"psr/log": "^1|^2|^3",
"symfony/yaml": ">=2.7"
},
"require-dev": {
"ext-curl": "*",
"codeception/codeception": "@dev",
"codeception/specify": "^2|^3",
"maslosoft/zamm": "^1|^2|^3",
"maslosoft/miniview": "^1|^2|^3",
"maslosoft/mangan-examples": "^1|^2|^3",
"codeception/module-asserts": "^3"
},
"suggest": {
"monolog/monolog": "Sends your logs to files, sockets, inboxes, databases and various web services",
"ptachoire/php-dmtx": "Generate DataMatrix Codes",
"endroid/qrcode": "Generate QR Codes",
"khanamiryan/qrcode-detector-decoder": "Decode QR Codes"
},
"autoload": {
"psr-4": {
"Maslosoft\\Mangan\\": "src/",
"Maslosoft\\ManganTest\\Extensions\\": "tests/extensions/"
},
"files": [
"src/Helpers/functions.php",
"src/Helpers/Cursor/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Maslosoft\\ManganTest\\Models\\": "tests/models/"
}
}
}