-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
47 lines (47 loc) · 1.72 KB
/
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
46
47
{
"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",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^11.0",
"nesbot/carbon": "^3.4.0",
"spatie/browsershot": "^4.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.31"
},
"autoload": {
"psr-4": {
"GlennRaya\\Xendivel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"GlennRaya\\Xendivel\\XendivelServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}