forked from modxcms/evolution
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.2 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "evolution-cms/evolution",
"description": "Evolution CMS is a Content Management System, ex MODX Evolution",
"type": "project",
"keywords": [
"content",
"CMS",
"routing",
"templating"
],
"homepage": "https://evo.im/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Dmytro Lukianenko",
"email": "dmi3yy@gmail.com",
"homepage": "https://dmi3yy.com",
"role": "Developer"
},
{
"name": "Serhii Korneliuk",
"email": "info@seigerit.com",
"homepage": "https://seigerit.com",
"role": "Developer"
}
],
"support": {
"docs": "https://docs.evo.im",
"email": "dmi3yy@evo.im",
"telegram": "https://t.me/evolutioncms",
"issues": "https://github.com/evolution-cms/evolution/issues/",
"source": "https://github.com/evolution-cms/evolution/"
},
"config": {
"vendor-dir": "vendor"
},
"require": {
"php": "^8.3",
"ext-pdo": "*",
"ext-json": "*",
"ext-readline": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpstan/phpstan": "^2.1"
},
"scripts": {
"analyze": "@php -d xdebug.mode=off vendor/bin/phpstan --memory-limit=512M"
}
}