We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec7e966 + f3f68c7 commit f8ff111Copy full SHA for f8ff111
1 file changed
README.md
@@ -26,7 +26,7 @@ composer require "jaggedsoft/php-binance-api @dev"
26
If the above step didn't work, install composer and try again.
27
#### Debian / Ubuntu
28
```
29
-sudo apt-get install curl
+sudo apt-get install curl php-curl
30
curl -s http://getcomposer.org/installer | php
31
php composer.phar install
32
@@ -65,6 +65,15 @@ while(true) {
65
}
66
67
68
+=======
69
+#### Security - CA Bundles
70
+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.
71
+You can disable the downloading of the CA Bundle
72
+```php
73
+$api = new Binance\API( "somefile.json" );
74
+$api->caOverride = true;
75
+```
76
+
77
#### Get latest price of all symbols
78
```php
79
$ticker = $api->prices();
0 commit comments