PHPackages                             kaankilic/omnipay-iyzico - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. kaankilic/omnipay-iyzico

ActiveLibrary[Payment Processing](/categories/payments)

kaankilic/omnipay-iyzico
========================

Iyzico gateway for the Omnipay payment processing library

1.0.0(8y ago)121MITPHP

Since Apr 29Pushed 7y ago1 watchersCompare

[ Source](https://github.com/kaankilic/omnipay-iyzico)[ Packagist](https://packagist.org/packages/kaankilic/omnipay-iyzico)[ Docs](https://github.com/kaankilic/omnipay-iyzico)[ RSS](/packages/kaankilic-omnipay-iyzico/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (3)Versions (1)Used By (0)

Omnipay: Iyzico
===============

[](#omnipay-iyzico)

**Iyzico driver for the Omnipay payment processing library**

 [ ![Build Status](https://camo.githubusercontent.com/ac994551c0a6b08e612c2bbaaded6d1e2269a33e45b9cdbfa2231837e9dfdbb3/68747470733a2f2f7472617669732d63692e6f72672f6b61616e6b696c69632f6f6d6e697061792d69797a69636f2e737667) ](https://travis-ci.org/kaankilic/omnipay-iyzico) [ ![Total Downloads](https://camo.githubusercontent.com/ebb055cf1f9d71313625df222fffd65cbaa4836d8c0a66a6185084f5140d74fa/68747470733a2f2f706f7365722e707567782e6f72672f6b61616e6b696c69632f6f6d6e697061792d69797a69636f2f642f746f74616c2e737667) ](https://packagist.org/packages/kaankilic/omnipay-iyzico) [ ![Latest Stable Version](https://camo.githubusercontent.com/563d8f80e57d183f50447e7c227f274430e77e3d6f35bba81b178c34d3e03dae/68747470733a2f2f706f7365722e707567782e6f72672f6b61616e6b696c69632f6f6d6e697061792d69797a69636f2f762f737461626c652e737667) ](https://packagist.org/packages/kaankilic/omnipay-iyzico) [ ![License](https://camo.githubusercontent.com/3b16f3de5b409e49117fa3aa64af46ea418e68654fa3b71a06515f4c134ce766/68747470733a2f2f706f7365722e707567782e6f72672f6b61616e6b696c69632f6f6d6e697061792d69797a69636f2f6c6963656e73652e737667) ](https://packagist.org/packages/kaankilic/omnipay-iyzico)

Introduction
------------

[](#introduction)

`omnipay-iyzico` provides an expressive and fluent way to use iyzico with omnipay framework agnostic, multi-gateway payment processing.

License
-------

[](#license)

Laravel `omnipay-iyzico` is open-sourced software licensed under the [MIT](http://opensource.org/licenses/MIT)

### Installation

[](#installation)

To get started with `omnipay-iyzico`, use Composer to add the package to your project's dependencies:

```
composer require kaankilic/omnipay-iyzico
```

For general usage instructions, please see the main [Omnipay](https://github.com/thephpleague/omnipay) repository.

### Basic Usage

[](#basic-usage)

```
	$gateway = Omnipay::create('Iyzico');
	$formInputData = array(
	    'name' => 'Bobby',
	    'lastname' => 'Tables',
	    'number' => '4131111111111117',
	    'expiryMonth' => '08',
	    'expiryYear' => '2023',
	    'cvv' => '001',
	    'billingCity'	=> 'Amsterdam',
	    'billingAddress1'	=> 'test address',
		'billingCountry' => 'Nederlands',
		'email'	=> 'bl4cksta@gmail.com',
		'postCode'	=> 'NL11100'
	);
	$card = new CreditCard($formInputData);
	$request = $gateway->authorize(['identityNumber'=>'IDENTITY_NUMBER','callbackUrl' => 'https://pos.app/']);
	$request->setCard($card);
	$request->setApiKey('sandbox-API-KEY');
	$request->setSecretKey('sandbox-SECRET-KEY');
	$basket = new \Omnipay\Common\ItemBag();
	$item = new \Omnipay\Common\Item(['name' => 'item name 1', 'price'=> '40.00']);
	$basket->add($item);

	$request->setItems($basket);
	$response = $request->send();
	if($response->isSuccessful()){
		...
	}
```

### Support

[](#support)

If you are having general issues with Omnipay, we suggest posting on [Stack Overflow](http://stackoverflow.com/). Be sure to add the [omnipay tag](http://stackoverflow.com/questions/tagged/omnipay) so it can be easily found.

If you want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a [mailing list](https://groups.google.com/forum/#!forum/omnipay) which you can subscribe to.

If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/kaankilic/omnipay-iyzico/issues), or better yet, fork the library and submit a pull request.

Contributions
-------------

[](#contributions)

I am the creator and single contributor of the project. So, Feel free to contribute something useful. Please use Github for reporting bugs, and making comments or suggestions

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2936d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/46afbba6b880ec59a944b5184e8e3d01bdf0094decfee0f9d99e74607eb348ca?d=identicon)[kaankilic](/maintainers/kaankilic)

---

Top Contributors

[![kaankilic](https://avatars.githubusercontent.com/u/5264153?v=4)](https://github.com/kaankilic "kaankilic (13 commits)")

---

Tags

iyzicoiyzico-driveriyzipayomnipayomnipay-iyzicopaymentgatewaypaymerchantomnipaypurchaseiyzico

### Embed Badge

![Health badge](/badges/kaankilic-omnipay-iyzico/health.svg)

```
[![Health](https://phpackages.com/badges/kaankilic-omnipay-iyzico/health.svg)](https://phpackages.com/packages/kaankilic-omnipay-iyzico)
```

###  Alternatives

[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

587421.0k11](/packages/lokielse-omnipay-alipay)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
