Skip to content

Commit

Permalink
Prepare for 2.1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
regdos committed Nov 23, 2015
1 parent f9fcd00 commit b03579b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 30 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.1.4
* Remove Verify Auth Basic
* Code cleanup
* Fix messages for throwHttpStatusException

## 2.1.0
* Endpoint https://secure.payu.com/api/v2_1/orders
* Simplification of request structure by eliminating nesting
Expand Down
61 changes: 32 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
{
"name": "openpayu/openpayu_php_sdk",
"type": "library",
"license": "LGPL-3.0",
"description": "OpenPayU PHP Library",
"extra": [
{
"engine": "PHP SDK"
}
],
"minimum-stability": "stable",
"authors": [
{
"name": "OpenPayU",
"homepage": "http://developers.payu.com"
}
],
"require": {
"php": ">=5.2.1",
"ext-curl": "*",
"ext-hash": "*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"support": {
"issues": "https://github.com/PayU/openpayu_php/issues"
},
"autoload": {
"classmap": ["lib/"]
"name": "openpayu/openpayu_php_sdk",
"type": "library",
"license": "LGPL-3.0",
"description": "OpenPayU PHP Library",
"version": "2.1.4",
"extra": [
{
"engine": "PHP SDK"
}
],
"minimum-stability": "stable",
"authors": [
{
"name": "OpenPayU",
"homepage": "http://developers.payu.com"
}
],
"require": {
"php": ">=5.2.1",
"ext-curl": "*",
"ext-hash": "*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"support": {
"issues": "https://github.com/PayU/openpayu_php/issues"
},
"autoload": {
"classmap": [
"lib/"
]
}
}
2 changes: 1 addition & 1 deletion lib/OpenPayU/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class OpenPayU_Configuration
private static $sender = 'Generic';

const COMPOSER_JSON = "/composer.json";
const DEFAULT_SDK_VERSION = 'PHP SDK 2.1.3';
const DEFAULT_SDK_VERSION = 'PHP SDK 2.1.4';


/**
Expand Down

0 comments on commit b03579b

Please sign in to comment.