-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 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
{
"name": "ion-bazan/pl-qr-payment",
"type": "library",
"description": "This library helps you generate payment QR codes for Polish bank mobile applications",
"keywords": ["qr", "payment", "polish", "poland", "bank", "wire", "transfer", "invoice", "faktura", "przelew", "kod"],
"authors": [
{
"name": "Ion Bazan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11",
"endroid/qr-code": "^4 || ^5",
"infection/infection": "~0.27.9"
},
"license": "MIT",
"autoload": {
"psr-4": { "IonBazan\\PaymentQR\\Poland\\": "src/" }
},
"autoload-dev": {
"psr-4": { "IonBazan\\PaymentQR\\Poland\\Tests\\": "tests/" }
},
"suggest": {
"endroid/qr-code": "^4 | ^5 Allows generating QR code images"
},
"config": {
"allow-plugins": {
"endroid/installer": true,
"infection/extension-installer": true
}
}
}