-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.06 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "vitexsoftware/abraflexi-report-tools",
"description": "Several AbraFlexi Report Tools.",
"type": "project",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Vitex",
"email": "info@vitexsoftware.cz"
}
],
"bin": ["bin/upreport"],
"require": {
"spojenet/flexibee": "^3.7",
"lightools/xml": "^3.0"
},
"autoload": {
"psr-4": {
"AbraFlexi\\Report\\": "src/Report"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\": "vendor/vitexsoftware/ease-core/tests/src/EaseCore",
"Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.94",
"ergebnis/composer-normalize": "^2.50",
"ergebnis/php-cs-fixer-config": "^6.60",
"phpstan/phpstan-phpunit": "2.0.16"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}