-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 940 Bytes
/
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
{
"name": "vladaurbanek/php-fio-api",
"type": "library",
"description": "PHP Fio API implemention",
"keywords": [
"fio",
"banking",
"api"
],
"homepage": "https://vladaurbanek.cz",
"license": "MIT",
"authors": [
{
"name": "Vladislav Urbanek",
"email": "[email protected]",
"homepage": "https://vladaurbanek.cz/",
"role": "Software Developer"
}
],
"require": {
"php": "^8.0",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "~4.0.x-dev",
"php-coveralls/php-coveralls": "~2.5.3"
},
"suggest": {
"kdyby/curl-ca-bundle": "Provides regularly updated root certificates list"
},
"autoload": {
"psr-4": {
"FioApi\\": "src/FioApi"
}
},
"scripts": {
"test": "phpunit",
"phpcs": "phpcs --standard=PSR2 src && phpcs --standard=PSR2 tests"
}
}