-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
54 lines (54 loc) · 1.21 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": "rikudou/czqrpayment",
"type": "library",
"description": "QR payment library for Czech accounts",
"homepage": "https://github.com/RikudouSage/QrPaymentCZ",
"keywords": [
"qr",
"payment"
],
"license": "MIT",
"authors": [
{
"name": "Dominik Chrástecký",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 | ^8.0",
"rikudou/qr-payment-interface": "^1.0",
"rikudou/iban": "^1.1.1",
"rikudou/qr-payment-qr-code-provider": "^1.2"
},
"autoload": {
"psr-4": {
"Rikudou\\CzQrPayment\\": "src/",
"rikudou\\CzQrPayment\\": "src/"
}
},
"suggest": {
"endroid/qr-code": "For getting the qr code image"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.1",
"endroid/qr-code": "^3.2",
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/phpstan": "^0.12.82"
},
"autoload-dev": {
"psr-4": {
"Rikudou\\CzQrPayment\\Tests\\": "tests/"
}
},
"scripts": {
"fixer": "php-cs-fixer fix src --verbose",
"phpstan": "phpstan analyse --level=max src",
"phpunit": "phpunit"
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}