PHP code example of ahmard / flutterwave
1. Go to this page and download the library: Download ahmard/flutterwave library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ahmard / flutterwave example snippets
use Ahmard\Flutterwave\Config;
use Ahmard\Flutterwave\Transaction;
use Ahmard\Flutterwave\TransactionData;
)
->amount(100)
->paymentOption('card,banktransfer,ussd')
->customerName('Aminu Mustapha')
->customerEmail('[email protected]')
->customerPhoneNumber(7035636394)
->customerId(1)
->redirectUrl('http://localhost:8800/redir');
$payment = Transaction::create($data);
var_dump($payment->redirectLink());
use Ahmard\Flutterwave\Transaction;
$verification = Transaction::verify('2323');
var_dump($verification->isSuccessful());
var_dump($verification->isFailed());
var_dump($verification->txRef());
var_dump($verification->currency());
var_dump($verification->amount());