forked from sprain/php-swiss-qr-bill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1 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": "sprain/swiss-qr-bill",
"description": "A PHP library to create Swiss QR bills",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"symfony/validator": "^3.4.47|^4.4|^5.0",
"symfony/intl": "^3.4.47|^4.4|^5.0",
"khanamiryan/qrcode-detector-decoder": "^1.0.3",
"kmukku/php-iso11649": "^1.5",
"endroid/qr-code": "^3.9.7",
"ext-iconv": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"dg/bypass-finals": "^1.3",
"dms/phpunit-arraysubset-asserts": "^0.1|^0.2",
"fpdf/fpdf": "^1.82",
"friendsofphp/php-cs-fixer": "^2.19",
"phpstan/phpstan": "^0.12.53",
"symfony/css-selector": "^4.2",
"symfony/var-dumper": "^5.1",
"tecnickcom/tcpdf": "^6.3.2"
},
"suggest": {
"tecnickcom/tcpdf": "Needed to create pdfs with TcPdfOutput",
"fpdf/fpdf": "Needed to create pdfs with FpdfOutput"
},
"autoload": {
"psr-4": {
"Sprain\\SwissQrBill\\": "src",
"Sprain\\Tests\\SwissQrBill\\": "tests"
}
}
}