-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.37 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
{
"name": "maslosoft/manganel",
"description": "Elasticsearch for Mangan",
"license": [
"AGPL-3.0-only",
"proprietary"
],
"homepage": "https://maslosoft.com/manganel/",
"type": "library",
"keywords": [
"php",
"mongodb",
"elasticsearch",
"odm",
"database",
"search"
],
"authors": [
{
"name": "Peter Maselkowski",
"email": "[email protected]",
"homepage": "https://maslosoft.com",
"role": "Developer"
}
],
"require": {
"php": ">= 8.2",
"ext-mongodb": "*",
"ext-json": "*",
"maslosoft/addendum": "*",
"elasticsearch/elasticsearch": ">5 <8",
"maslosoft/embedi": "*",
"maslosoft/mangan": ">=7",
"maslosoft/signals": "*",
"maslosoft/gazebo": "*"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Maslosoft\\Manganel\\": "src/",
"Maslosoft\\ManganelTest\\Extensions\\": "tests/extensions"
}
},
"autoload-dev": {
"psr-4": {
"Maslosoft\\ManganelTest\\Models\\": "tests/models"
}
},
"require-dev": {
"codeception/codeception": "^4",
"codeception/module-asserts": "^1",
"maslosoft/zamm": "*",
"monolog/monolog": "^2.5"
}
}