-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.18 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
{
"name": "datalinx/php-upn-qr-generator",
"description": "QR code generator for Slovenian UPN payment order",
"keywords": [
"QR code",
"UPN",
"payment order",
"Slovenia"
],
"homepage": "https://github.com/datalinx/php-upn-qr-generator",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "DataLinx",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"DataLinx\\PhpUpnQrGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DataLinx\\PhpUpnQrGenerator\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"bacon/bacon-qr-code": "^2.0.7"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"khanamiryan/qrcode-detector-decoder": "1.0.5.*",
"friendsofphp/php-cs-fixer": "^3.14"
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes",
"test": "vendor/bin/phpunit"
}
}