-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
50 lines (50 loc) · 1.23 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
48
49
50
{
"name": "salla/zatca",
"description": "A helper to generate the QR code and signed it for ZATCA e-invoicing",
"type": "library",
"keywords": [
"ZATCA",
"e-invocing",
"salla",
"qr-code"
],
"homepage": "https://github.com/salla/zatca",
"license": "MIT",
"authors": [
{
"name": "Salla Team",
"email": "support@salla.dev",
"homepage": "https://salla.dev"
}
],
"support": {
"issues": "https://github.com/salla/zatca/issues",
"source": "https://github.com/salla/zatca"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"ext-mbstring": "*",
"ext-dom": "*",
"robrichards/xmlseclibs": "^3.1",
"josemmo/uxml": "^0.1.4",
"chillerlan/php-qrcode": "^4.3",
"phpseclib/phpseclib": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0"
},
"autoload": {
"psr-4": {
"Salla\\ZATCA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Salla\\ZATCA\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}