Skip to content

Commit

Permalink
Released Version 11.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
giriraj12000 committed Jun 11, 2021
1 parent aacfa4d commit a21ade5
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
> **LoginRadius PHP SDK Change Log** provides information regarding what has changed, more specifically what changes, improvements and bug fix has been made to the SDK. For more details please refer to the [LoginRadius API Documention](https://www.loginradius.com/docs/api/v2/deployment/sdk-libraries/php-library/)

# Version 11.1.1
Release on **June 11, 2021**

## Bug Fixed
- Fixed API Key Validation issue

# Version 11.1.0
Release on **April 06, 2021**

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install the latest stable version of library:

```
composer require loginradius/php-sdk:11.1.0
composer require loginradius/php-sdk:11.1.1
```

Include the following files in your Project Directory
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "loginradius/php-sdk",
"description": "LoginRadius PHP SDK v11.1.0",
"description": "LoginRadius PHP SDK v11.1.1",
"keywords": ["loginradius", "phpsdk"],
"type": "library",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/LoginRadiusSDK/Clients/DefaultHttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @category : Clients
* @package : DefaultHttpClient
* @author : LoginRadius Team
* @version : 11.1.0
* @version : 11.1.1
* @license : https://opensource.org/licenses/MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/LoginRadiusSDK/Clients/IHttpClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @category : Clients
* @package : IHttpClientInterface
* @author : LoginRadius Team
* @version : 11.1.0
* @version : 11.1.1
* @license : https://opensource.org/licenses/MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion src/LoginRadiusSDK/LoginRadiusException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @category : LoginRadiusSDK
* @package : LoginRadiusException
* @author : LoginRadius Team
* @version : 11.1.0
* @version : 11.1.1
* @license : https://opensource.org/licenses/MIT
*/
namespace LoginRadiusSDK;
Expand Down
5 changes: 2 additions & 3 deletions src/LoginRadiusSDK/Utility/Functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @category : Utility
* @package : Functions
* @author : LoginRadius Team
* @version : 11.1.0
* @version : 11.1.1
* @license : https://opensource.org/licenses/MIT
*/

Expand All @@ -23,7 +23,7 @@
class Functions
{

const VERSION = '11.1.0';
const VERSION = '11.1.1';

private static $_apikey;
private static $_apisecret;
Expand Down Expand Up @@ -63,7 +63,6 @@ public function __construct($customizeOptions = array())
*/
public static function setDefaultApplication($apikey, $apisecret)
{
self::_checkAPIValidation($apikey, $apisecret);
self::$_apikey = $apikey;
self::$_apisecret = $apisecret;

Expand Down

0 comments on commit a21ade5

Please sign in to comment.