Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
jaggedsoft authored Jun 1, 2020
2 parents ec7e966 + f3f68c7 commit f8ff111
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ composer require "jaggedsoft/php-binance-api @dev"
If the above step didn't work, install composer and try again.
#### Debian / Ubuntu
```
sudo apt-get install curl
sudo apt-get install curl php-curl
curl -s http://getcomposer.org/installer | php
php composer.phar install
```
Expand Down Expand Up @@ -65,6 +65,15 @@ while(true) {
}
```

=======
#### Security - CA Bundles
If you don't know what a CA bundle is, no action is required. If you do know and you don't like our auto upate feature.
You can disable the downloading of the CA Bundle
```php
$api = new Binance\API( "somefile.json" );
$api->caOverride = true;
```

#### Get latest price of all symbols
```php
$ticker = $api->prices();
Expand Down

0 comments on commit f8ff111

Please sign in to comment.