-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.29 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"authors": [
{
"email": "info@vitexsoftware.cz",
"name": "Vítězslav Dvořák"
}
],
"autoload": {
"psr-4": {
"mServer\\": "src/mServer/"
}
},
"autoload-dev": {
"psr-4": {
"mServer\\Tests\\": "tests/mServer/",
"Test\\": "testing/",
"Test\\Ease\\": "vendor/vitexsoftware/ease-core/tests/src/Ease",
"Test\\mServer\\": "testing/src/mServer/"
}
},
"description": "Stormware's Pohoda mServer client.",
"license": "MIT",
"minimum-stability": "stable",
"name": "vitexsoftware/pohoda-connector",
"require": {
"ext-curl": "*",
"ext-iconv": "*",
"lightools/xml": "^2.0|^3.0",
"riesenia/pohoda": "^1.26",
"vitexsoftware/ease-core": "^1.50",
"vitexsoftware/pohodaser": "^0.1"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "3.95.2",
"ergebnis/composer-normalize": "^2.48",
"ergebnis/php-cs-fixer-config": "^6.60"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --ansi --memory-limit=4G"
},
"scripts-descriptions": {
"phpstan": "PHPStan - PHP Static Analysis Tool - https://github.com/phpstan/phpstan"
},
"type": "library"
}