Skip to content

canavci2016/shopier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shopier

Shopier api ile ödeme yapma

Shopier api kullanımı example.php dosyasında anlatılmıştır.

NASIL INDIRILIR

composer require canavci2016/shopier

Manual kullanım

require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload

use CanAvci\Shopier\Shopier;
use CanAvci\Shopier\BillingAddress;
use CanAvci\Shopier\ShippingAddress;
use CanAvci\Shopier\Person;

define("ORDER_ID", uniqid());
define("ORDER_AMOUNT", rand(100, 4000));
define("CALLBACK_URL", "https://www.canavci.com/ccc");


$shopier = new Shopier("q2eq2", "q2eq2e");

// satın alan kişinin bilgileri
$buyer = new Person;
$buyer->setName("can");
$buyer->setSurname("avci");
$buyer->setEmail("test@testmail.com");
$buyer->setPhone("5364778591");

// fatura adresi
$billingAddress = new BillingAddress;
$billingAddress->setCountry("turkey");
$billingAddress->setCity("istanbul");
$billingAddress->setAddress("Kartaltepeme Mah");
$billingAddress->setPostcode("34200");

// teslimat adresi
$shippingAddress = new ShippingAddress;
$shippingAddress->setCountry("turkey");
$shippingAddress->setCity("istanbul");
$shippingAddress->setAddress("Kartaltepeme Mah");
$shippingAddress->setPostcode("34120");


$shopier->setBuyer($buyer);
$shopier->setBillingAddress($billingAddress);
$shopier->setShippingAdress($shippingAddress);

$shopier->fields(ORDER_ID, ORDER_AMOUNT, CALLBACK_URL);

die($shopier->run(ORDER_ID, ORDER_AMOUNT, CALLBACK_URL));

About

Shopier api ile ödeme yapma

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages