71 lines
2.0 KiB
JSON
71 lines
2.0 KiB
JSON
{
|
|
"name": "xgenious/paymentgateway",
|
|
"description": "a laravel package to manage multiple payment gateway",
|
|
"keywords": [
|
|
"Laravel",
|
|
"xgenious"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Sharifur Rahman",
|
|
"email": "dvrobin4@gmail.com"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/Sharifur/paymentgateway",
|
|
"require": {
|
|
"php": "^8.1",
|
|
"laravel/framework": "^10.10",
|
|
"stripe/stripe-php": "^7.103",
|
|
"srmklive/paypal": "~3.0",
|
|
"midtrans/midtrans-php": "^2.5",
|
|
"anandsiddharth/laravel-paytm-wallet": "^2.0.0",
|
|
"razorpay/razorpay": "2.*",
|
|
"mollie/laravel-mollie": "^2.0",
|
|
"unicodeveloper/laravel-paystack": "1.0.*",
|
|
"mercadopago/dx-php":"^2.4.4",
|
|
"tzsk/payu": "^6.0.0",
|
|
"square/square": "18.0.0.20220420",
|
|
"cinetpay/cinetpay-php": "^1.9",
|
|
"paytabscom/laravel_paytabs": "dev-master",
|
|
"jomweb/billplz-laravel" : "^v3.0.0",
|
|
"sharifur/payfast" : "^v1.0.0",
|
|
"authorizenet/authorizenet": "^2.0",
|
|
"php-http/message": "^1.16",
|
|
"php-http/message-factory": "^1.1",
|
|
"iyzico/iyzipay-php": "^2.0",
|
|
"stevebauman/location": "^7.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.1",
|
|
"orchestra/testbench": "^7.0",
|
|
"phpstan/phpstan": "^0.12"
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|