Download the PHP package ethemkizil/omnipay-paratika without Composer

On this page you can find all versions of the php package ethemkizil/omnipay-paratika. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package omnipay-paratika

Omnipay: Paratika

Paratika (Asseco) (Akbank, TEB, Halkbank, Finansbank, İş Bankası, Şekerbank, Vakıfbank ) gateway for Omnipay payment processing library

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements Paratika (Turkish Payment Gateways) support for Omnipay.

Paratika Api Entegrasyonu, Asseco firmasının yeni sanal pos hizmeti için Omnipay kütüphanesi. Akbank, TEB, Halkbank, Finansbank, İş Bankası, Şekerbank ve Vakıfbank taksit imkanı sunuyor.

Installation

composer require ethemkizil/omnipay-paratika

Basic Usage

The following gateways are provided by this package:

Gateway Methods

For general usage instructions, please see the main Omnipay repository.

Samples

        require __DIR__ . '/vendor/autoload.php';

        use Omnipay\Omnipay;

        $gateway = Omnipay::create('Paratika');
        $gateway->setMerchant('10000000');
        $gateway->setMerchantUser('[email protected]');
        $gateway->setMerchantPassword('Paratika123');
        $gateway->setSecretKey('QOClasdJUuDDWasdasdasd');
        $gateway->setBank('ISBANK');

        $gateway->setMode("NonDirectPost3D");
        //Diğer paremetreler: api DirectPost3D NonDirectPost3D
        //3D test için işlem şifresi a ya da 1

        // Zorunlu parametreler
        $card = [
            'number'        => '5456165456165454',
            'expiryMonth'   => '12',
            'expiryYear'    => '2020',
            'cvv'           => '000',

            'email'         => '[email protected]',
            'firstname'     => 'Insya',
            'lastname'      => 'Bilisim',
            'phone'         => '95555050505',

            'billingAddress1' => 'Test sokak',
            'billingCity'     => 'Tekirdag',
            'billingPostcode' => '59850',
            'billingCountry'  => 'Turkey',

            'shippingAddress1' => 'Test sokak',
            'shippingCity'     => 'Tekirdag',
            'shippingPostcode' => '59850',
            'shippingCountry'  => 'Turkey'
        ];

        try {

            $options = [
                'amount'        => 100.00,
                'currency'      => 'TRY',
                //'installment'   => 0, // Taksit
                'orderId'       => 'S-12341308', // Benzersiz olmalı.
                'returnUrl'     => 'http://local.desktop/Paratika/callback.php',
                'cancelUrl'     => 'http://local.desktop/Paratika/callback.php',
                'sessionType'   => 'PAYMENTSESSION', //Diğer parametreler: PAYMENTSESSION WALLETSESSION
                'card'          => $card,
            ];

            // SessionToken almak için oturum açalım
            $sessionResponse = $gateway->session($options)->send();

            if ($sessionResponse->isSuccessful()) {

                    $sessionToken =  $sessionResponse->getSessionToken();

                    // Oturum değiştikenini satış ve diğer işlemlerde kullanmak için tanımlayalım.
                    $gateway->setSessionToken($sessionToken);

                    // Auth (Satış) işlemi
                    $response = $gateway->purchase($options)->send();

                    if ($response->isSuccessful()) {
                        echo "İşlem başarılı transactionId:". $response->getTransactionId();
                    } elseif ($response->isRedirect()) {
                        $response->redirect();
                    } else {
                        echo $response->getMessage();
                    }

            } elseif ($sessionResponse->isRedirect()) {
                $sessionResponse->redirect();
            } else {
                echo $sessionResponse->getMessage();
            }

        } catch (\Exception $e) {
            echo $e->getMessage();
        }

All versions of omnipay-paratika with dependencies

PHP Build Version
Package Version
Requires omnipay/common Version ~2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ethemkizil/omnipay-paratika contains the following files

Loading the files please wait ....