-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.22 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.22 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
{
"name": "evolution-cms/installer",
"description": "Evolution CMS Installer - CLI tool for installing Evolution CMS projects",
"type": "project",
"keywords": [
"evolution-cms",
"evo",
"cms",
"installer",
"cli"
],
"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",
"issues": "https://github.com/evolution-cms/installer/issues/",
"source": "https://github.com/evolution-cms/installer/"
},
"bin": [
"bin/evo"
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-mysqli": "*",
"ext-pdo": "*",
"ext-zip": "*",
"guzzlehttp/guzzle": "^7.10",
"symfony/console": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/process": "^7.0"
},
"suggest": {
"ext-readline": "Optional: improves interactive CLI experience for PHP tooling; not required for the Go-based installer."
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"mikey179/vfsstream": "^2.0"
},
"autoload": {
"psr-4": {
"EvolutionCMS\\Installer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EvolutionCMS\\Installer\\Tests\\": "tests/"
}
},
"config": {
"vendor-dir": "vendor-php",
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"post-install-cmd": [
"@php bin/composer-self-install.php"
],
"post-update-cmd": [
"@php bin/composer-self-install.php"
],
"test": "vendor-php/bin/phpunit",
"test-coverage": "vendor-php/bin/phpunit --coverage-text --coverage-html=build/coverage --coverage-filter=src || echo 'Note: Code coverage requires Xdebug or PCOV extension. Install it to see coverage reports.'"
},
"scripts-descriptions": {
"test": "Run PHPUnit tests",
"test-coverage": "Run tests with code coverage (requires Xdebug or PCOV)"
},
"minimum-stability": "dev",
"prefer-stable": true
}