forked from mhujer/fio-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.48 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "webwingscz/fio-api-php",
"type": "library",
"description": "Fio API PHP implemention",
"keywords": [
"fio",
"banking",
"api"
],
"homepage": "https://github.com/webwingscz/fio-api-php",
"license": "MIT",
"authors": [
{
"name": "Martin Hujer",
"email": "mhujer@gmail.com",
"homepage": "https://www.martinhujer.cz/",
"role": "Developer"
},
{
"name": "Jiří Dorazil",
"email": "dorazil@webwings.cz",
"homepage": "https://www.webwings.cz/",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"guzzlehttp/guzzle": "~6.1|~7.0",
"composer/ca-bundle": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"FioApi\\": "src/FioApi"
}
},
"autoload-dev": {
"psr-4": {
"FioApi\\": "tests/FioApi"
}
},
"scripts": {
"ci": [
"@security",
"@phpstan",
"@phpcs",
"@test"
],
"security": "composer audit --locked --no-dev",
"test": "phpunit",
"phpcs": "phpcs --standard=PSR12 src && phpcs --standard=PSR12 tests",
"phpstan": "phpstan analyse -c phpstan.neon"
}
}