Skip to content

Commit 4630234

Browse files
committed
first php-zatca-xml
0 parents  commit 4630234

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5941
-0
lines changed

.gitignore

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
## Composer
2+
.idea
3+
composer.phar
4+
/vendor/
5+
6+
7+
## Linux
8+
# temporary files which can be created if a process still has a handle open of a deleted file
9+
.fuse_hidden*
10+
11+
# KDE directory preferences
12+
.directory
13+
14+
# Linux trash folder which might appear on any partition or disk
15+
.Trash-*
16+
17+
# .nfs files are created when an open file is removed but is still being accessed
18+
.nfs*
19+
20+
21+
## macOS
22+
# General
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
27+
# Icon must end with two \r
28+
Icon
29+
30+
31+
# Thumbnails
32+
._*
33+
34+
# Files that might appear in the root of a volume
35+
.DocumentRevisions-V100
36+
.fseventsd
37+
.Spotlight-V100
38+
.TemporaryItems
39+
.Trashes
40+
.VolumeIcon.icns
41+
.com.apple.timemachine.donotpresent
42+
43+
# Directories potentially created on remote AFP share
44+
.AppleDB
45+
.AppleDesktop
46+
Network Trash Folder
47+
Temporary Items
48+
.apdisk
49+
50+
51+
## Windows
52+
# Windows thumbnail cache files
53+
Thumbs.db
54+
ehthumbs.db
55+
ehthumbs_vista.db
56+
57+
# Dump file
58+
*.stackdump
59+
60+
# Folder config file
61+
[Dd]esktop.ini
62+
63+
# Recycle Bin used on file shares
64+
$RECYCLE.BIN/
65+
66+
# Windows Installer files
67+
*.cab
68+
*.msi
69+
*.msix
70+
*.msm
71+
*.msp
72+
73+
# Windows shortcuts
74+
*.lnk
75+
76+
# Generated XML files from tests
77+
/tests/*.xml

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# php-zatca-xml

composer.json

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "saleh7/php-zatca-xml",
3+
"description": "this package handle the stage 2 of zatca for integration the tax and simpilified tax invoices.",
4+
"keywords": [
5+
"zatca",
6+
"Saleh7",
7+
"invoice",
8+
"fatoora",
9+
"ublinvoice",
10+
"ubl invoice",
11+
"zatca-xml",
12+
"electronic invoice",
13+
"digital invoice",
14+
"xml",
15+
"government",
16+
"saudiarabia",
17+
"saudi arabia",
18+
"zakat and tax",
19+
"xml invoice"
20+
],
21+
"homepage": "https://github.com/Saleh7/php-zatca-xml",
22+
"license": "MIT",
23+
"require": {
24+
"php": "^7.4||^8.1",
25+
"sabre/xml": "^4.0"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "^9.5"
29+
},
30+
"autoload": {
31+
"psr-4": {
32+
"Saleh7\\Zatca\\": ["src"],
33+
"Saleh7\\Zatca\\Tests\\": ["tests"]
34+
}
35+
},
36+
"scripts": {
37+
"test": "vendor/bin/phpunit",
38+
"phpcs": "vendor/bin/phpcs -n --standard=phpcs.xml ./src/"
39+
}
40+
}

0 commit comments

Comments
 (0)