-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
executable file
·56 lines (56 loc) · 1.73 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
51
52
53
54
55
56
{
"name": "saleh7/php-zatca-xml",
"description": "An unofficial PHP library for generating ZATCA Fatoora e-invoices. This library facilitates the creation of compliant e-invoices, QR Codes, and certificates, as well as the submission of e-invoices to ZATCA's servers. It provides developers with an easy-to-use, customizable, and robust toolkit to integrate and automate ZATCA e-invoicing processes in PHP applications.",
"keywords": [
"ZATCA",
"invoice",
"e-invoice",
"fatoora",
"ublinvoice",
"ubl invoice",
"zatca-xml",
"electronic invoice",
"digital invoice",
"qr-code",
"xml",
"xml invoice"
],
"homepage": "https://github.com/Saleh7/php-zatca-xml",
"license": "MIT",
"authors": [
{
"name": "Saleh7",
"email": "Saleh7@protonmail.ch",
"homepage": "https://github.com/Saleh7"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-hash": "*",
"sabre/xml": "^4.0",
"guzzlehttp/guzzle": "^7.9",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Saleh7\\Zatca\\": ["src"],
"Saleh7\\Zatca\\Tests\\": ["tests"]
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"phpcs": "vendor/bin/phpcs -n --standard=phpcs.xml ./src/"
},
"support": {
"source": "https://github.com/Saleh7/php-zatca-xml",
"issues": "https://github.com/Saleh7/php-zatca-xml/issues"
}
}