-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.76 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.76 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "awcode/thaipromptpay",
"description": "Generate Thai PromptPay QR code payloads (EMVCo TLV) with support for phone, national ID, e-wallet, and Bill Payment with Ref1/Ref2. Laravel-friendly.",
"keywords": [
"promptpay",
"thailand",
"qr-code",
"qr",
"emvco",
"bill-payment",
"ref1",
"ref2",
"laravel",
"payment"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Awcode",
"email": "m@awcode.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"bacon/bacon-qr-code": "^2.0",
"khanamiryan/qrcode-detector-decoder": "^1.0|^2.0",
"orchestra/testbench": "^8.0|^9.0"
},
"suggest": {
"bacon/bacon-qr-code": "^2.0 — required to render generated payloads as SVG/PNG QR images",
"khanamiryan/qrcode-detector-decoder": "^1.0|^2.0 — required to scan slip QRs from image files",
"ext-gd": "Used by khanamiryan/qrcode-detector-decoder to read images (or use ext-imagick instead)"
},
"autoload": {
"psr-4": {
"Awcode\\ThaiPromptpay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Awcode\\ThaiPromptpay\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Awcode\\ThaiPromptpay\\Laravel\\ThaiPromptpayServiceProvider"
],
"aliases": {
"ThaiPromptpay": "Awcode\\ThaiPromptpay\\Laravel\\Facades\\ThaiPromptpay"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}