Skip to content
Snippets Groups Projects
Commit f77b4d4f authored by Dominik Eckelmann's avatar Dominik Eckelmann
Browse files

Note on enabling HTTPS/SSL support for php on windows

parent f7161c34
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,14 @@ This is a known problem with PHPUnit, the error can be avoided by passing the
phpunit --stderr
On windows you may have to enable OpenSSL support for https tests.
Some of them point to httpclient_http.tests.php on the failure.
To enable HTTPS support copy the ''libeay32.dll'' and ''ssleay32.dll'' to your ''windows\system32'' folder
and add the following line to your php.ini in the extension section:
<code ini>
extension=php_openssl.dll
</code>
===== Running selected Tests =====
You can run a single test file by providing it as an argument to phpunit:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment