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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

### [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))
- Support API `2019-05-29` [#177]((https://github.com/omise/omise-php/pull/177))
- Create Http interface for executing API request [#178]((https://github.com/omise/omise-php/pull/178))

### [v2.18.0 _(Jul 09, 2024)_](https://github.com/omise/omise-php/releases/tag/v2.18.0)

- Fix the latest version link in README. ([#157](https://github.com/omise/omise-php/pull/167))
Expand All @@ -13,7 +19,7 @@
- Removed the predefined installment minimum value ([#151](https://github.com/omise/omise-php/pull/151))
- Bug fixed on `OmiseSearch::scope` public key and secret key override as null ([#149](https://github.com/omise/omise-php/pull/149))
- Sonarcloud integration for code coverage ([#148](https://github.com/omise/omise-php/pull/148))

### [v2.16.0 _(August 25, 2022)_](https://github.com/omise/omise-php/releases/tag/v2.16.0)
- Made compatible with PHP 5.6 to 8.1 ([#141](https://github.com/omise/omise-php/pull/144))

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/v2.18.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.0.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": "v2.18.0",
"version": "v3.0.0",
"keywords": [
"alipay payment",
"credit card payment",
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', '2.18.0');
define('OMISE_PHP_LIB_VERSION', '3.0.0');
define('OMISE_API_URL', 'https://api.omise.co/');
define('OMISE_VAULT_URL', 'https://vault.omise.co/');

Expand Down
Loading