-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.34 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"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"
],
"require-dev": {
"ergebnis/composer-normalize": "^2.49",
"ergebnis/php-cs-fixer-config": "^6.58",
"friendsofphp/php-cs-fixer": "^3.92",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^13"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}