Skip to content

Commit

Permalink
Merge pull request #5 from 1Forge/server-updates
Browse files Browse the repository at this point in the history
Version Change and Socket Server Updated
  • Loading branch information
bricktownseo committed Nov 8, 2019
2 parents dca3107 + 7110e02 commit 5f3a0d2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -29,7 +29,7 @@ composer require oneforge/forexquotes
Or in your composer.json
```javascript
"require": {
"oneforge/forexquotes": "2.0.8"
"oneforge/forexquotes": "3.1.0"
},
```
## Usage
Expand Down
2 changes: 1 addition & 1 deletion composer.json
@@ -1,7 +1,7 @@
{
"name": "oneforge/forexquotes",
"type": "library",
"version": "3.0.0",
"version": "3.1.0",
"description": "Library to fetch and parse realtime Forex quotes and convert currencies",
"keywords": [
"forex",
Expand Down
2 changes: 1 addition & 1 deletion examples/REST-example.php
Expand Up @@ -2,7 +2,7 @@

/*
* This library is provided without warranty under the MIT license
* Created by Jacob Davis <jacob@1forge.com>
* Created by 1Forge <contact@1forge.com>
*/

require_once __DIR__ . '/../vendor/autoload.php';
Expand Down
2 changes: 1 addition & 1 deletion examples/websocket-example.php
Expand Up @@ -2,7 +2,7 @@

/*
* This library is provided without warranty under the MIT license
* Created by Jacob Davis <jacob@1forge.com>
* Created by 1Forge <contact@1forge.com>
*/

require_once __DIR__ . '/../vendor/autoload.php';
Expand Down
2 changes: 1 addition & 1 deletion lib/ForexDataClient.php
Expand Up @@ -142,7 +142,7 @@ public function connect($callback)
{
$this->post_login = $callback;

$this->socket_client = new WebSocket('wss://api.1forge.com/socket','http://localhost');
$this->socket_client = new WebSocket('wss://sockets.1forge.com/socket','http://localhost');
$this->socket_client->connect();

$this->login();
Expand Down

0 comments on commit 5f3a0d2

Please sign in to comment.