forked from sprain/php-swiss-qr-bill
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 1.07 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
{
"name": "sprain/swiss-qr-bill",
"description": "A PHP library to create Swiss QR bills",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.4|^8.0.0|^8.1.0",
"ext-dom": "*",
"symfony/validator": "^4.4|^5.0|^6.0",
"symfony/intl": "^4.4|^5.0|^6.0",
"kmukku/php-iso11649": "^1.5",
"endroid/qr-code": "^4.4.4",
"symfony/polyfill-intl-icu": "^1.23"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"dg/bypass-finals": "^1.3",
"dms/phpunit-arraysubset-asserts": "^0.2",
"fpdf/fpdf": "^1.82",
"friendsofphp/php-cs-fixer": "^3.4",
"khanamiryan/qrcode-detector-decoder": "^1.0.3",
"phpstan/phpstan": "^1.2",
"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"
}
}
}