forked from mhujer/fio-api-php
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.27 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
{
"name": "perlur/php-fio-api",
"type": "library",
"description": "PHP Fio API implemention",
"keywords": [
"fio",
"banking",
"api"
],
"homepage": "https://github.com/perlur/php-fio-api",
"license": "MIT",
"authors": [
{
"name": "Marek Stopka",
"email": "[email protected]",
"homepage": "https://www.perlur.cloud/go/marek-stopka/",
"role": "Business Owner"
},
{
"name": "Petr Kramář",
"email": "[email protected]",
"homepage": "https://www.perlur.cloud/go/petr-kramar/",
"role": "Software Developer"
},
{
"name": "Martin Hujer",
"email": "[email protected]",
"homepage": "https://www.martinhujer.cz/",
"role": "Initial Developer"
}
],
"require": {
"php": ">=5.5",
"ext-curl": "*",
"guzzlehttp/guzzle": "~6.1"
},
"require-dev": {
"phpunit/phpunit": "~4.7|~5.0",
"squizlabs/php_codesniffer": "~2.3",
"satooshi/php-coveralls": "^1.0"
},
"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"
}
}