-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
60 lines (60 loc) · 1.49 KB
/
composer.json
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
54
55
56
57
58
59
60
{
"name": "h4kuna/fio",
"type": "library",
"description": "Read movements by json file from Fio bank and send payments.",
"homepage": "https://github.com/h4kuna/fio",
"license": "MIT",
"authors": [
{
"name": "Milan Matějček",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"guzzlehttp/psr7": "^2.4",
"h4kuna/dir": "^0.1.3",
"h4kuna/memoize": "^0.1.3",
"nette/safe-stream": "^3.0",
"nette/utils": "^3.0 || ^4.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-strict-rules": "^1.4",
"symfony/http-client": "^6.0",
"tracy/tracy": "^2.9"
},
"autoload": {
"psr-4": {
"h4kuna\\Fio\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"h4kuna\\Fio\\Tests\\": [
"tests/src"
]
}
},
"suggest": {
"guzzlehttp/guzzle": "As default implementation for PSR-7, PSR-17 and PSR-18 standards."
},
"config": {
"sort-packages": true
},
"scripts": {
"stan": "vendor/bin/phpstan analyse",
"tests": "vendor/bin/tester -s --colors 1 -s -C tests/src",
"coverage": "vendor/bin/tester --coverage coverage.html --coverage-src src/ -s --colors 1 -s -C tests/src"
}
}