0

I need to integrate the Master Card API to my application to request payment and send the money to a bank account!

The app is created in Laravel, developer.mastercard has many apis, reading on the page I see that it has many apis and the one that seems to adapt to my needs is moneysend.

Add the dependency as the document says

Composer requires mastercard/moneysend

But I'm confused how to continue!

Thank you very much

Juan Ibarra
  • 579
  • 6
  • 16

1 Answers1

0

Install composer if you already haven't and then on terminal (while in your app folder), just type composer require mastercard/moneysend

This will execute the require command and download/import the dependency in your Laravel application

Paras
  • 9,258
  • 31
  • 55