Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

### [v3.1.0 _(Apr 22, 2026)_](https://github.com/omise/omise-php/releases/tag/v3.1.0)

- Remove Internet Banking [#181]((https://github.com/omise/omise-php/pull/181))

### [v3.0.0 _(Apr 08, 2025)_](https://github.com/omise/omise-php/releases/tag/v3.0.0)

- Resolve issue of keys passed to method not being used [#172]((https://github.com/omise/omise-php/pull/172))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ You can install the library via [Composer](https://getcomposer.org/). If you don

### Manually

If you are not using Composer, you can download [the latest version of Omise-PHP](https://github.com/omise/omise-php/archive/v3.0.0.zip).
If you are not using Composer, you can download [the latest version of Omise-PHP](https://github.com/omise/omise-php/archive/v3.1.0.zip).
Then, follow the instructions to install **Omise-PHP** to the project.

1. Extract the library to your project.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "omise/omise-php",
"description": "A PHP library designed specifically to connect with Omise API.",
"type": "library",
"version": "v3.0.0",
"version": "v3.1.0",
"keywords": [
"credit card payment",
"omise",
Expand Down
2 changes: 1 addition & 1 deletion lib/omise/res/OmiseApiResource.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

define('OMISE_PHP_LIB_VERSION', '3.0.0');
define('OMISE_PHP_LIB_VERSION', '3.1.0');
define('OMISE_API_URL', 'https://api.omise.co/');
define('OMISE_VAULT_URL', 'https://vault.omise.co/');

Expand Down
Loading