We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cdeaec commit d456105Copy full SHA for d456105
README.md
@@ -63,7 +63,7 @@ Cassandra's native protocol. The current version works with:
63
64
* Apache Cassandra versions 1.2, 2.0 and partially 2.1
65
* DataStax Enterprise 3.1, 3.2, 4.0 and 4.5
66
-* PHP 5.3+
+* PHP 5.3.4+
67
68
__NOTE__: Apache Cassandra 2.1 support is limited to the Cassandra 2.0 API, e.g. no user-defined types.
69
ext/php_cassandra.h
@@ -22,6 +22,10 @@
22
#include <Zend/zend_exceptions.h>
23
#include <Zend/zend_interfaces.h>
24
25
+#if PHP_VERSION_ID < 50304
26
+# error PHP 5.3.4 or later is required in order to build the driver
27
+#endif
28
+
29
#if HAVE_SPL
30
# include <ext/spl/spl_iterators.h>
31
# include <ext/spl/spl_exceptions.h>
0 commit comments