-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 906 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 906 Bytes
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
{
"name": "spojenet/fiobank-statement-tools",
"description": "FioBank bank statement tools",
"license": "MIT",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "info@vitexsoftware.cz"
}
],
"autoload": {
"psr-4": {
"SpojeNet\\FioApi\\": "src/SpojeNet/FioApi/"
}
},
"minimum-stability": "dev",
"bin": ["src/fiobank-statement-downloader.php"],
"require": {
"mhujer/fio-api-php": "dev-master",
"vitexsoftware/ease-core": "^1.50"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.92",
"ergebnis/composer-normalize": "^2.48",
"ergebnis/php-cs-fixer-config": "^6.59"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}