-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.13 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "vitexsoftware/multiflexi-cli",
"description": "Manage MultiFlexi command line interface",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "info@vitexsoftware.cz"
}
],
"minimum-stability": "dev",
"require": {
"ext-yaml": "*",
"ext-simplexml": "*",
"vitexsoftware/ease-fluentpdo": "dev-main",
"symfony/process": "^6.0",
"vitexsoftware/multiflexi-core": "dev-main",
"phplucidframe/console-table": "^1.4",
"confirm-it-solutions/php-zabbix-api": "^3.0",
"vitexsoftware/ease-html": "^1.40",
"symfony/console": "^6.4",
"justinrainbow/json-schema": "^6.0@dev"
},
"autoload": {
"psr-4": {
"MultiFlexi\\": "src/MultiFlexi/",
"MultiFlexi\\Cli\\": "src/MultiFlexi/Cli/",
"MultiFlexi\\Cli\\Command\\": "src/Command/"
}
},
"autoload-dev": {
"psr-4": {
"MultiFlexi\\Cli\\Tests\\": "tests/src",
"MultiFlexi\\Cli\\Tests\\Command\\": "tests/src/Command"
}
},
"bin": [
"src/multiflexi-cli"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}