-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.55 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "famcare/zatca-e-invoicing",
"description": "ZATCA E-Invoicing Plugin for WooCommerce - Complete solution for Saudi Arabia tax compliance",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Famcare Team",
"email": "info@famcare.app"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ramsey/uuid": "^4.0",
"guzzlehttp/guzzle": "^6.0",
"ext-openssl": "*",
"ext-xml": "*",
"ext-json": "*",
"ext-curl": "*",
"phpseclib/phpseclib": "^3.0",
"endroid/qr-code": "^4.0",
"spatie/array-to-xml": "^2.0",
"robrichards/xmlseclibs": "^3.1",
"chillerlan/php-qrcode": "4.3.2",
"sabre/xml": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Famcare\\ZatcaInvoicing\\": "includes/"
},
"classmap": [
"includes/"
]
},
"autoload-dev": {
"psr-4": {
"Famcare\\ZatcaInvoicing\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true
}
},
"extra": {
"installer-name": "zatca-e-invoicing"
},
"scripts": {
"test": "phpunit",
"cs": "phpcs --standard=PSR12 includes/",
"cbf": "phpcbf --standard=PSR12 includes/"
}
}