ok

Mini Shell

Direktori : /home2/selectio/www/limpiar.in.net/updates/vendor/myfatoorah/library/
Upload File :
Current File : /home2/selectio/www/limpiar.in.net/updates/vendor/myfatoorah/library/README.md

# MyFatoorah - Library

MyFatoorah Payment Gateway PHP library. It is a PHP library to integrate MyFatoorah APIs with your website.

## Install

Via Composer

``` bash
composer require myfatoorah/library
```

## Usage

### Payment Operations

``` php
$mfObj = new PaymentMyfatoorahApiV2($apiKey, $countryMode, $isTest);
$postFields = [
    'NotificationOption' => 'Lnk',
    'InvoiceValue'       => '50',
    'CustomerName'       => 'fname lname',
];

$data = $mfObj->getInvoiceURL($postFields);

$invoiceId   = $data->InvoiceId;
$paymentLink = $data->InvoiceURL;

echo "Click on <a href='$paymentLink' target='_blank'>$paymentLink</a> to pay with invoiceID $invoiceId.";

```

### Shipping Operations

``` php
$mfObj = new ShippingMyfatoorahApiV2($apiKey, $countryMode, $isTest);
$json  = $mfObj->getShippingCountries();

echo 'Country code: ' . $json->Data[0]->CountryCode;
echo 'Country name: ' . $json->Data[0]->CountryName;
```

### General Operations

``` php
$phone = MyfatoorahApiV2::getPhone('+2 01234567890');

echo 'Phone code: ' . $phone[0];
echo 'Phone number: ' . $phone[1];

```

## Testing

``` bash
phpunit
```

## Credits

- [MyFatoorah Plugin Team](https://github.com/my-fatoorah)
- [Nermeen Shoman](mailto:nshoman@myfatoorah.com)
- [Rasha Saeed](mailto:rsaeed@myfatoorah.com)

## License

The GPL-3.0-only License.

Zerion Mini Shell 1.0