Ostico / PhpOrient

PhpOrient - Official Php driver based on the binary protocol of OrientDB.
Other
68 stars 37 forks source link

Fatal/exit on missing php_sockets extension #47

Closed mindplay-dk closed 8 years ago

mindplay-dk commented 8 years ago

If the sockets extension is not loaded, the library quietly exists on e.g. dbOpen().

I'd suggest adding "ext-sockets": "*" to "require" in composer.json, and/or a guard clause in the Transport constructor, e.g.:

if (!extension_loaded("sockets")) { throw ... }