Fix #596: Suggest updating curl version used by php

This commit is contained in:
Zach Borboa
2019-07-20 20:37:56 -07:00
committed by GitHub
parent f27059b170
commit 418f4cba1d
+8
View File
@@ -9,6 +9,14 @@ $ composer info
```
Compare your version with latest release listed on the [releases page](https://github.com/php-curl-class/php-curl-class/releases).
### Ensure php is using the latest version of curl
```bash
$ php -r 'var_dump(curl_version());'
```
Compare your version of curl with latest release listed on [curl's releases page](https://github.com/curl/curl/releases).
### Turn on error reporting
```php