-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
49 lines (49 loc) · 1.15 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
{
"name": "rikudou/euqrpayment",
"type": "library",
"description": "QR payment library for European Union according to EPC standard version 2",
"homepage": "https://github.com/RikudouSage/QrPaymentEU",
"keywords": [
"qr",
"payment"
],
"license": "MIT",
"authors": [
{
"name": "Dominik Chrástecký",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-mbstring": "*",
"rikudou/qr-payment-interface": "^1.0",
"rikudou/qr-payment-qr-code-provider": "^1.0"
},
"autoload": {
"psr-4": {
"rikudou\\EuQrPayment\\": "src/"
}
},
"suggest": {
"endroid/qr-code": "For generating QR code image"
},
"require-dev": {
"phpoffice/phpspreadsheet": "^1.5",
"phpunit/phpunit": "^9.5",
"endroid/qr-code": "^3.2",
"friendsofphp/php-cs-fixer": "^2.13",
"phpstan/phpstan": "^0.12.40",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload-dev": {
"psr-4": {
"rikudou\\EuQrPayment\\Tests\\": "tests/"
}
},
"scripts": {
"fixer": "php-cs-fixer fix src --verbose",
"phpstan": "phpstan analyse --level=7 src",
"phpunit": "phpunit"
}
}