jadell / neo4jphp

PHP wrapper of the Neo4j REST interface
Other
532 stars 137 forks source link

Curl options #160

Closed meza closed 10 months ago

meza commented 10 years ago

Added room for curl options.

Our motiv was to be able to use an SSL backend with a self-signed certificate, thus adding

$transport->setExtraCurlOptions(array(
            CURLOPT_SSL_VERIFYPEER => false,
            CURLOPT_SSL_VERIFYHOST => false
        ));

was essential.