-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
executable file
·90 lines (90 loc) · 2.52 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
82
83
84
85
86
87
88
89
90
{
"authors": [
{
"homepage": "https://github.com/taufik-nurrohman",
"name": "Taufik Nurrohman",
"role": "Developer"
},
{
"homepage": "https://github.com/igoynawamreh",
"name": "Igoy Nawamreh",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"mecha-cms/composer": true
},
"lock": false,
"sort-packages": true,
"vendor-dir": "engine/vendor"
},
"description": "Minimalist content management system.",
"extra": {
"minify-on-install": false,
"remove-on-install": {
".factory/": true,
".git/": true,
".github/": true,
".node_modules/": true,
"test/": true,
".editorconfig": true,
".gitattributes": true,
".gitignore": true,
".gitmodules": true,
".keep": true,
"README.md": true,
"package-lock.json": true,
"package.json": true,
"test": 1,
"test.css": true,
"test.html": true,
"test.js": true,
"test.json": true,
"test.php": true,
"test.txt": true
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mecha-cms"
},
{
"type": "opencollective",
"url": "https://opencollective.com/mecha-cms"
},
{
"type": "paypal",
"url": "https://paypal.me/tatautaufik"
}
],
"homepage": "https://mecha-cms.com",
"license": "GPL-3.0-or-later",
"name": "mecha-cms/mecha",
"require": {
"ext-json": "*",
"mecha-cms/composer": "^1.0.0",
"mecha-cms/x.asset": "^2.0.0",
"mecha-cms/x.layout": "^2.0.0",
"mecha-cms/x.link": "^2.0.0",
"mecha-cms/x.markdown": "^3.0.0",
"mecha-cms/x.page": "^3.1.0",
"mecha-cms/x.test": "^1.0.0",
"mecha-cms/y.log": "^2.0.0",
"php": ">=7.3"
},
"suggest": {
"ext-curl": "We will use `file_get_contents()` if `ext-curl` is not installed. It will be more efficient when `curl_*()` functions are available.",
"ext-gd": "Required if you are interested in installing the `mecha-cms/x.image` extension.",
"ext-mbstring": "It would be great if `ext-mbstring` is installed. We will use other ways if `ext-mbstring` is not available.",
"ext-zip": "Required if certain extensions (such as `mecha-cms/x.panel`) need to work with ZIP files."
},
"support": {
"forum": "https://github.com/mecha-cms/mecha/discussions",
"issues": "https://github.com/mecha-cms/mecha/issues",
"source": "https://github.com/mecha-cms/mecha",
"wiki": "https://github.com/mecha-cms/mecha/wiki"
},
"type": "project"
}