-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
executable file
·40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "saleh7/php-zatca-xml",
"description": "this package handle the stage 2 of zatca for integration the tax and simpilified tax invoices.",
"keywords": [
"zatca",
"Saleh7",
"invoice",
"fatoora",
"ublinvoice",
"ubl invoice",
"zatca-xml",
"electronic invoice",
"digital invoice",
"xml",
"government",
"saudiarabia",
"saudi arabia",
"zakat and tax",
"xml invoice"
],
"homepage": "https://github.com/Saleh7/php-zatca-xml",
"license": "MIT",
"require": {
"php": "^7.4||^8.1",
"sabre/xml": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Saleh7\\Zatca\\": ["src"],
"Saleh7\\Zatca\\Tests\\": ["tests"]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs -n --standard=phpcs.xml ./src/"
}
}