PHPackages                             mkeremcansev/isyerim-pos - 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. mkeremcansev/isyerim-pos

ActiveLibrary

mkeremcansev/isyerim-pos
========================

This is my package isyerim-pos

1.0.0(2y ago)9241MITPHPPHP ^8.1

Since Dec 17Pushed 2y ago1 watchersCompare

[ Source](https://github.com/mkeremcansev/isyerim-pos)[ Packagist](https://packagist.org/packages/mkeremcansev/isyerim-pos)[ Docs](https://github.com/mkeremcansev/isyerim-pos)[ RSS](/packages/mkeremcansev-isyerim-pos/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (9)Versions (2)Used By (0)

IsyerimPOS Laravel Integration Package
======================================

[](#isyerimpos-laravel-integration-package)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require mkeremcansev/isyerim-pos @dev
```

You can publish the config file with:

```
php artisan vendor:publish --tag="isyerim-pos-config"
```

Add env variables to your .env file

```
ISYERIMPOS_API_URL=
ISYERIMPOS_API_KEY=
ISYERIMPOS_MERCHANT_ID=
ISYERIMPOS_USER_ID=
```

Usage
-----

[](#usage)

```
// use
use Mkeremcansev\IsyerimPos\Services\IsyerimPOSInterface;

$informations = resolve(IsyerimPOSInterface::class)
    ->setReturnUrl('http://redirect-url') // this parameter is the url that you want to redirect after payment
    ->setOrderId('Created order id') // this parameter is the order id that you created
    ->setClientIP(request()->getClientIp()) // this parameter if not set, will be set automatically
    ->setInstallments(0) // this parameter is how many installments you want to use
    ->setAmount('200.00') // this parameter is the amount of the order
    ->setIs3D(true) // this parameter is if you want to use 3D secure
    ->setIsAutoCommit(false) // this parameter is if you want to auto commit the order
    ->setCardInformation(
        cardOwner: 'Card owner',
        cardNo: 'Card number',
        month: 'Card month',
        year: 'Card year',
        cvv: 'Card cvv'
    ) // this parameter is the card information
    ->setCustomerInformation(
        name: 'Customer name',
        surname: 'Customer surname',
        phone: 'Customer phone',
        email: 'Customer email',
        address: 'Customer address',
        description: 'Customer description'
    ) // this parameter is the customer information
    ->setProducts(
        [
            [
                'Name' => 'Product 1',
                'Count' => 1,
                'UnitPrice' => '100.00',
            ],
            [
                'Name' => 'Product 2',
                'Count' => 1,
                'UnitPrice' => '100.00',
            ],
        ]
    ); // this parameter is the products information
```

Available Methods
-----------------

[](#available-methods)

```
// this method is for creating payment request
$payRequest = $informations->createPayRequest();

// get payment uuid
$payRequest->getUuid();

// get payment url
$payRequest->getPaymentLink();

// get payment html
$payRequest->getPaymentHtml();

// get payment order id
$payRequest->getOrderId();

// get payment confirm key
$payRequest->getConfirmKey();

// this method is for getting payment result for 3D secure
$paymentConfirmationResponse = resolve(IsyerimPOSInterface::class)->paymentConfirmationFor3DRequest(
    uuid: $payRequest->getUuid(),
    confirmKey: $payRequest->getConfirmKey()
);

// this method is canceling payment
$cancelPayment = resolve(IsyerimPOSInterface::class)->cancelRequest(
    uuid: $payRequest->getUuid(),
    description: 'Payment cancel description'
);

// this method is refunding payment
$refundPayment = resolve(IsyerimPOSInterface::class)->refundRequest(
    uuid: $payRequest->getUuid(),
    amount: 100.00,
    description: 'Payment refund description'
);

// this method is checking payment result

$checkPayment = resolve(IsyerimPOSInterface::class)->resultCheckRequest(
    uuid: $payRequest->getUuid()
);

// this method is get installments
$installments = $informations->getInstallmentsRequest();

// this method is get comissions rates
$comissions = resolve(IsyerimPOSInterface::class)->getComissionsRatesRequest();

// this method is get transactions with between dates.
// *Date parameters format is Y-m-d
$transactions = resolve(IsyerimPOSInterface::class)->getTransactionsRequest(
    startDate: 'Start date',
    endDate: 'End date'
);

// All request responses has the following methods
$payRequest->isSuccess(); // this method is checking if the request is success
$payRequest->getErrorCode(); // this method is getting error code
$payRequest->isDone(); // this method is checking if the request is done
$payRequest->getMessage(); // this method is getting message

// If you cannot find the key you are looking for in the response class,
// you can find all keys and values with following method
$payRequest->getResponse(); // this method is getting response
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 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

883d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a29f15e6484cb5aea854e2efb6cbe532c480ca298c73673d1a1ee612ada65eee?d=identicon)[mkeremcansev](/maintainers/mkeremcansev)

---

Top Contributors

[![mkeremcansev](https://avatars.githubusercontent.com/u/76810832?v=4)](https://github.com/mkeremcansev "mkeremcansev (23 commits)")

---

Tags

laravelMustafa Cansevisyerim-pos

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/mkeremcansev-isyerim-pos/health.svg)

```
[![Health](https://phpackages.com/badges/mkeremcansev-isyerim-pos/health.svg)](https://phpackages.com/packages/mkeremcansev-isyerim-pos)
```

###  Alternatives

[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[spatie/laravel-prometheus

Export Laravel metrics to Prometheus

2651.3M6](/packages/spatie-laravel-prometheus)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)

PHPackages © 2026

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