-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 853 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
{
"name": "hubipe/huqrpayment",
"type": "library",
"description": "QR payment library for Hungary (according to the Magyar Nemzeti Bank standard version 001)",
"homepage": "https://github.com/hubipe/QrPaymentHU",
"keywords": [
"qr",
"payment",
"hungary"
],
"license": "MIT",
"authors": [
{
"name": "Petr Hubík",
"homepage": "http://hubik.net"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-mbstring": "*",
"rikudou/iban": "^1.2",
"rikudou/qr-payment-interface": "^1.1",
"rikudou/qr-payment-qr-code-provider": "^1.1"
},
"autoload": {
"psr-4": {
"hubipe\\HuQrPayment\\": "src/"
}
},
"suggest": {
"endroid/qr-code": "For generating QR code image"
},
"require-dev": {
"endroid/qr-code": "^3.2",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"phpstan": "phpstan analyse --configuration phpstan.neon"
}
}