-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.13 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 2.13 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "glennraya/xendivel",
"description": "A Laravel package to easily integrate Xendit payment gateway. It supports credit and debit cards, and e-wallet payments and custom invoices, queued notifications, webhook listeners and more.",
"keywords": [
"laravel",
"xendit",
"billing",
"laravel-xendit",
"GCash API",
"ShopeePay API",
"GrabPay API",
"Maya API",
"PayMaya API",
"laravel package xendit",
"xendit laravel integration",
"xendit gayment gateway",
"credit card payments",
"debit card transactions",
"e-wallet payment",
"custom invoices",
"online payments southeast asia",
"xendit api integration",
"digital wallets api integration",
"OVO",
"DANA",
"LinkAja",
"AstraPay",
"Jenius Pay",
"Sakuku",
"Appota",
"Momo",
"VNPT Pay",
"ViettelPay",
"ZaloPay",
"WechatPay",
"LINE Pay",
"TrueMoney"
],
"license": "MIT",
"authors": [
{
"role": "Full-Stack Web Developer",
"name": "Glenn Raya",
"email": "rayaglenn@gmail.com"
}
],
"require": {
"php": "~8.2.0|~8.3.0|~8.4.0|~8.5.0",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^10.0|^11.0|^12.0|^13.0",
"nesbot/carbon": "^3.4.0",
"spatie/browsershot": "^5.2.3"
},
"require-dev": {
"orchestra/testbench": "^10.0|^11.0",
"pestphp/pest": "^4.0"
},
"autoload": {
"psr-4": {
"GlennRaya\\Xendivel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@php vendor/bin/pest --configuration phpunit.xml.dist"
]
},
"extra": {
"laravel": {
"providers": [
"GlennRaya\\Xendivel\\XendivelServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}