-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.99 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "xgenious/paymentgateway",
"description": "A Laravel package to manage multiple payment gateways with a unified API",
"type": "library",
"keywords": [
"laravel",
"payment",
"payment-gateway",
"stripe",
"paypal",
"razorpay",
"mollie",
"flutterwave",
"paystack",
"xgenious"
],
"authors": [
{
"name": "Sharifur Rahman",
"email": "dvrobin4@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/XgeniousLLC/paymentgateway",
"require": {
"php": "^8.2",
"laravel/framework": "^12.13.0",
"stripe/stripe-php": "^13.10.0",
"srmklive/paypal": "~3.0",
"midtrans/midtrans-php": "^2.5",
"razorpay/razorpay": "2.*",
"mollie/laravel-mollie": "^3.1.0",
"mercadopago/dx-php":"^3.7.1",
"square/square": "37.1.0.20240604",
"paytabscom/laravel_paytabs": "dev-master",
"authorizenet/authorizenet": "^2.0",
"psr/http-factory": "^1.1",
"iyzico/iyzipay-php": "^2.0",
"stevebauman/location": "^7.1",
"yoomoney/yookassa-sdk-php": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^10.0.0",
"phpstan/phpstan": "^1.10"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Xgenious\\Paymentgateway\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xgenious\\Paymentgateway\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Xgenious\\Paymentgateway\\Providers\\PaymentgatewayServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit -c ./phpunit.xml --colors=always",
"analysis": "vendor/bin/phpstan analyse"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}