[PR #65] [MERGED] Interpos integration and many other fixes, improvements #190

Closed
opened 2026-03-03 15:43:52 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mewebstudio/pos/pull/65
Author: @nuryagdym
Created: 4/11/2022
Status: Merged
Merged: 4/11/2022
Merged by: @nuryagdym

Base: masterHead: interpos-integration


📝 Commits (10+)

  • 50710e8 issue #48 initial interpos integration
  • ae0a282 Merge branch 'mewebstudio:master' into interpos-integration
  • d3a5095 updated InterPos example codes
  • 05a60c3 InterPos updated send method
  • cea2799 Merge branch 'master' into interpos-integration
  • c06d251 InterPosTest fixed some code style warnings
  • b7639d6 replaced model types and merchant type with constants
  • ad2cfdc replaced model types and merchant type with constants
  • 9cf5b0d replaced hard coded secure types with constants
  • 8cace53 updated InterPos to use getDefaultPaymentResponse()

📊 Changes

149 files changed (+3404 additions, -3986 deletions)

View changed files

📝 README.md (+13 -1)
📝 composer.json (+1 -1)
📝 config/pos.php (+16 -0)
📝 examples/_main_config.php (+18 -0)
📝 examples/akbank/3d-host/_config.php (+12 -14)
📝 examples/akbank/3d-host/index.php (+5 -45)
📝 examples/akbank/3d-host/response.php (+2 -107)
📝 examples/akbank/3d-pay/_config.php (+12 -14)
📝 examples/akbank/3d-pay/form.php (+6 -43)
📝 examples/akbank/3d-pay/index.php (+3 -51)
📝 examples/akbank/3d-pay/response.php (+2 -107)
📝 examples/akbank/3d/_config.php (+14 -14)
📝 examples/akbank/3d/form.php (+6 -46)
📝 examples/akbank/3d/index.php (+3 -53)
📝 examples/akbank/3d/response.php (+2 -107)
examples/akbank/_payment_config.php (+110 -0)
examples/akbank/index.php (+6 -0)
📝 examples/akbank/regular/_config.php (+10 -16)
📝 examples/akbank/regular/cancel.php (+8 -25)
examples/akbank/regular/direct.php (+0 -32)

...and 80 more files

📄 Description

No description provided


🔄 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/65 **Author:** [@nuryagdym](https://github.com/nuryagdym) **Created:** 4/11/2022 **Status:** ✅ Merged **Merged:** 4/11/2022 **Merged by:** [@nuryagdym](https://github.com/nuryagdym) **Base:** `master` ← **Head:** `interpos-integration` --- ### 📝 Commits (10+) - [`50710e8`](https://github.com/mewebstudio/pos/commit/50710e84d90c31094c1dce479695e74f49601363) issue #48 initial interpos integration - [`ae0a282`](https://github.com/mewebstudio/pos/commit/ae0a28221db572511800bbcf6a57d96d1ce3f050) Merge branch 'mewebstudio:master' into interpos-integration - [`d3a5095`](https://github.com/mewebstudio/pos/commit/d3a5095d9a7c2b1a190766e1e4838144bd206b19) updated InterPos example codes - [`05a60c3`](https://github.com/mewebstudio/pos/commit/05a60c3fe88fa6e3f6bb2a4091a7d6b633818305) InterPos updated send method - [`cea2799`](https://github.com/mewebstudio/pos/commit/cea27994715487bbafa71905f6a5120a29fc1263) Merge branch 'master' into interpos-integration - [`c06d251`](https://github.com/mewebstudio/pos/commit/c06d2515d2716a4d38a69496afae7529e814e117) InterPosTest fixed some code style warnings - [`b7639d6`](https://github.com/mewebstudio/pos/commit/b7639d6a481e5d48516b48951709e9a3e7260e9c) replaced model types and merchant type with constants - [`ad2cfdc`](https://github.com/mewebstudio/pos/commit/ad2cfdc8e4eff80c02bd06fe218a2ec7a36746f1) replaced model types and merchant type with constants - [`9cf5b0d`](https://github.com/mewebstudio/pos/commit/9cf5b0da1193bbcffd3c0bcae946b496a19fba4d) replaced hard coded secure types with constants - [`8cace53`](https://github.com/mewebstudio/pos/commit/8cace53c871c4e650fd227d4ce33275227e42d2a) updated InterPos to use getDefaultPaymentResponse() ### 📊 Changes **149 files changed** (+3404 additions, -3986 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+13 -1) 📝 `composer.json` (+1 -1) 📝 `config/pos.php` (+16 -0) 📝 `examples/_main_config.php` (+18 -0) 📝 `examples/akbank/3d-host/_config.php` (+12 -14) 📝 `examples/akbank/3d-host/index.php` (+5 -45) 📝 `examples/akbank/3d-host/response.php` (+2 -107) 📝 `examples/akbank/3d-pay/_config.php` (+12 -14) 📝 `examples/akbank/3d-pay/form.php` (+6 -43) 📝 `examples/akbank/3d-pay/index.php` (+3 -51) 📝 `examples/akbank/3d-pay/response.php` (+2 -107) 📝 `examples/akbank/3d/_config.php` (+14 -14) 📝 `examples/akbank/3d/form.php` (+6 -46) 📝 `examples/akbank/3d/index.php` (+3 -53) 📝 `examples/akbank/3d/response.php` (+2 -107) ➕ `examples/akbank/_payment_config.php` (+110 -0) ➕ `examples/akbank/index.php` (+6 -0) 📝 `examples/akbank/regular/_config.php` (+10 -16) 📝 `examples/akbank/regular/cancel.php` (+8 -25) ➖ `examples/akbank/regular/direct.php` (+0 -32) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 15:43:52 +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#190
No description provided.