-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
45 lines (45 loc) · 1010 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
41
42
43
44
45
{
"name": "klsheng/myinvois-php-sdk",
"description": "MyInvois SDK for PHP",
"keywords": [
"php",
"myinvois",
"lhdn",
"irbm",
"malaysia"
],
"homepage": "https://github.com/klsheng/myinvois-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Sean Kau",
"email": "kliensheng2020@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "~7.0|~6.0|~5.0|~4.0",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"sabre/xml": "^4.0",
"psr/http-client": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "~8|~9"
},
"autoload": {
"psr-4": {
"Klsheng\\Myinvois\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Klsheng\\Myinvois\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}