forked from sprain/php-swiss-qr-bill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 886 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
{
"name": "sprain/swiss-qr-bill",
"description": "A PHP library to create Swiss QR bills",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.2",
"symfony/validator": "^3.4|^4.2|^5.0",
"symfony/intl": "^3.4|^4.2|^5.0",
"khanamiryan/qrcode-detector-decoder": "^1.0.3",
"kmukku/php-iso11649": "^1.5",
"endroid/qr-code": "^3.8.2"
},
"require-dev": {
"phpunit/phpunit": "^6.4|^7.0",
"symfony/css-selector": "^4.2",
"phpstan/phpstan": "^0.12.23",
"friendsofphp/php-cs-fixer": "^2.16",
"tecnickcom/tcpdf": "^6.3.2"
},
"suggest": {
"tecnickcom/tcpdf": "Needed to create pdfs with TcPdfOutput"
},
"autoload": {
"psr-4": {
"Sprain\\SwissQrBill\\": "src",
"Sprain\\Tests\\SwissQrBill\\": "tests"
}
}
}