[PR #192] [MERGED] V1.0.0 #243

Closed
opened 2026-03-03 15:44:07 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mewebstudio/pos/pull/192
Author: @nuryagdym
Created: 3/23/2024
Status: Merged
Merged: 3/30/2024
Merged by: @nuryagdym

Base: masterHead: refactoring-08


📝 Commits (10+)

  • 9778da5 removing payment model from Account - PosNet remove account->getModel() usages
  • d580f10 delete deprecated VakifBankAccount
  • e5c573f removing payment model from Account - removed model property from Accounts
  • 83e033c PosNetAccount remove unnecessary fields
  • 3af7298 PosInterface - remove prepare() method
  • 2388fba tests - refactoring and renamed $threeDAccount to $account
  • d12d3a6 remove deprecated VakifBank classes
  • 019abad move order prepare methods from Gateway classes into RequestDataMappers
  • 6a5586b RequestDataMappers - use order as an array
  • 6c82bcc move constants from AbstractGateway into PosInterface

📊 Changes

386 files changed (+38916 additions, -23610 deletions)

View changed files

📝 .docker/Dockerfile-web (+1 -1)
📝 .docker/php-xdebug.ini (+2 -2)
📝 .github/workflows/ci-php.yml (+2 -2)
📝 README.md (+118 -291)
📝 composer.json (+5 -3)
config/pos.php (+0 -246)
config/pos_production.php (+161 -0)
config/pos_test.php (+109 -0)
docs/CANCEL-EXAMPLE.md (+97 -0)
📝 docs/CHANGELOG.md (+70 -1)
docs/HISTORY-EXAMPLE.md (+65 -0)
docs/NON-SECURE-PAYMENT-EXAMPLE.md (+99 -0)
docs/ORDER-HISTORY-EXAMPLE.md (+83 -0)
docs/PRE-AUTH-POST-EXAMPLE.md (+244 -0)
docs/REFUND-EXAMPLE.md (+83 -0)
docs/STATUS-EXAMPLE.md (+85 -0)
docs/THREED-PAYMENT-EXAMPLE.md (+267 -0)
docs/THREED-SECURE-AND-PAY-PAYMENT-IN-MODALBOX-EXAMPLE.md (+281 -0)
📝 examples/_common-codes/3d-host/index.php (+47 -5)
📝 examples/_common-codes/3d/form.php (+184 -33)

...and 80 more files

📄 Description

@huseyinyildirim
@ilyasokay
@vedatyilmaz
@mahmut
@umuttaymaz
@zeydduran
@emreakay
@erenilhan
@FikretCin
@skuzoluk
@ibayazit
@sekizlipenguen

Kutuphanenin V1 versiyonu icin istedigim degisiklikleri tamamladim, yeni degisikliklerle ilgili dusuncelerinizi almak isterim.

Degisikliklerini ozetini refactoring-08 branch'de /docs/CHANGLE.LOG.md'den gorebilirsiniz.

/docs altinda kod ornekleri de bulabilirsiniz.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mewebstudio/pos/pull/192 **Author:** [@nuryagdym](https://github.com/nuryagdym) **Created:** 3/23/2024 **Status:** ✅ Merged **Merged:** 3/30/2024 **Merged by:** [@nuryagdym](https://github.com/nuryagdym) **Base:** `master` ← **Head:** `refactoring-08` --- ### 📝 Commits (10+) - [`9778da5`](https://github.com/mewebstudio/pos/commit/9778da54221530bb639341294220c5d85bf616c8) removing payment model from Account - PosNet remove account->getModel() usages - [`d580f10`](https://github.com/mewebstudio/pos/commit/d580f10412110051d45ebfbf2e6e47dd61087dba) delete deprecated VakifBankAccount - [`e5c573f`](https://github.com/mewebstudio/pos/commit/e5c573f7db3f5db34b74e24c168643d07e1a3b5d) removing payment model from Account - removed model property from Accounts - [`83e033c`](https://github.com/mewebstudio/pos/commit/83e033cab1fde0f65c2bd3f3875c822e20768b99) PosNetAccount remove unnecessary fields - [`3af7298`](https://github.com/mewebstudio/pos/commit/3af72985c7aa0509eeede1f00d9b6d895c4abb72) PosInterface - remove prepare() method - [`2388fba`](https://github.com/mewebstudio/pos/commit/2388fba8b55db2b076564c62905b60211eae9c26) tests - refactoring and renamed $threeDAccount to $account - [`d12d3a6`](https://github.com/mewebstudio/pos/commit/d12d3a6afe0e5a38df5ae5acd48ac9f1fab1e646) remove deprecated VakifBank classes - [`019abad`](https://github.com/mewebstudio/pos/commit/019abade3c2c4e5ae53cdffb9046363007d81d1c) move order prepare methods from Gateway classes into RequestDataMappers - [`6a5586b`](https://github.com/mewebstudio/pos/commit/6a5586bc996e7596f146f379169bad58ee7123f9) RequestDataMappers - use order as an array - [`6c82bcc`](https://github.com/mewebstudio/pos/commit/6c82bccd74520e293f08e674c36a4643c4d223b8) move constants from AbstractGateway into PosInterface ### 📊 Changes **386 files changed** (+38916 additions, -23610 deletions) <details> <summary>View changed files</summary> 📝 `.docker/Dockerfile-web` (+1 -1) 📝 `.docker/php-xdebug.ini` (+2 -2) 📝 `.github/workflows/ci-php.yml` (+2 -2) 📝 `README.md` (+118 -291) 📝 `composer.json` (+5 -3) ➖ `config/pos.php` (+0 -246) ➕ `config/pos_production.php` (+161 -0) ➕ `config/pos_test.php` (+109 -0) ➕ `docs/CANCEL-EXAMPLE.md` (+97 -0) 📝 `docs/CHANGELOG.md` (+70 -1) ➕ `docs/HISTORY-EXAMPLE.md` (+65 -0) ➕ `docs/NON-SECURE-PAYMENT-EXAMPLE.md` (+99 -0) ➕ `docs/ORDER-HISTORY-EXAMPLE.md` (+83 -0) ➕ `docs/PRE-AUTH-POST-EXAMPLE.md` (+244 -0) ➕ `docs/REFUND-EXAMPLE.md` (+83 -0) ➕ `docs/STATUS-EXAMPLE.md` (+85 -0) ➕ `docs/THREED-PAYMENT-EXAMPLE.md` (+267 -0) ➕ `docs/THREED-SECURE-AND-PAY-PAYMENT-IN-MODALBOX-EXAMPLE.md` (+281 -0) 📝 `examples/_common-codes/3d-host/index.php` (+47 -5) 📝 `examples/_common-codes/3d/form.php` (+184 -33) _...and 80 more files_ </details> ### 📄 Description @huseyinyildirim @ilyasokay @vedatyilmaz @mahmut @umuttaymaz @zeydduran @emreakay @erenilhan @FikretCin @skuzoluk @ibayazit @sekizlipenguen Kutuphanenin V1 versiyonu icin istedigim degisiklikleri tamamladim, yeni degisikliklerle ilgili dusuncelerinizi almak isterim. Degisikliklerini ozetini `refactoring-08` branch'de `/docs/CHANGLE.LOG.md`'den gorebilirsiniz. `/docs` altinda kod ornekleri de bulabilirsiniz. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 15:44:07 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/pos#243
No description provided.