-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.57 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "vitexsoftware/multiflexi-core",
"type": "library",
"require": {
"justinrainbow/json-schema": "^6.6@dev",
"vitexsoftware/ease-fluentpdo": "dev-main",
"jalismrs/bitwarden-php": "^1.1",
"vitexsoftware/ease-html": "^1.40",
"vitexsoftware/ease-core": "^1.50",
"dragonmantank/cron-expression": "^3.3"
},
"license": "MIT",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "info@vitexsoftware.cz"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"MultiFlexi\\": "src/MultiFlexi/",
"MultiFlexi\\Env\\": "src/MultiFlexi/Env",
"MultiFlexi\\Action\\": "src/MultiFlexi/Action",
"MultiFlexi\\Zabbix\\": "src/MultiFlexi/Zabbix",
"MultiFlexi\\Executor\\": "src/MultiFlexi/Executor",
"MultiFlexi\\Reporting\\": "src/MultiFlexi/Reporting",
"MultiFlexi\\CredentialProtoType\\": "src/MultiFlexi/CredentialProtoType"
}
},
"autoload-dev": {
"psr-4": {
"Test\\MultiFlexi\\": "tests/src/MultiFlexi/"
}
},
"require-dev": {
"phpunit/phpunit": "^12.3@dev",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.92",
"ergebnis/composer-normalize": "^2.48",
"ergebnis/php-cs-fixer-config": "^6.58",
"phpstan/phpstan-phpunit": "2.0.x-dev",
"rector/rector": "dev-main"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}