-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 931 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 931 Bytes
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
{
"name": "revenuemonster/sdk",
"description": "A PHP SDK for RevenueMonster APIs",
"license": "MIT",
"keywords": [
"rm-sdk",
"php",
"rm"
],
"authors": [
{
"name": "Lee Sian Loong",
"email": "sianloong90@gmail.com",
"homepage": "https://github.com/si3nloong",
"role": "Developer"
},
{
"name": "Rex Low",
"email": "rex@revenuemonster.my",
"homepage": "https://github.com/rexlow",
"role": "Developer"
},
{
"name": "Alta",
"homepage": "https://github.com/falconeri"
},
{
"name": "IceBay",
"homepage": "https://github.com/IceBay"
}
],
"require": {
"php": "^8.0",
"rakit/validation": "^1.4.0",
"nategood/httpful": "^1.0",
"illuminate/collections": "^11.24"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"RevenueMonster\\SDK\\": "src"
}
}
}