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 d947faf commit 7c87abcCopy full SHA for 7c87abc
ext/collections/php_collections.c
@@ -38,8 +38,15 @@ PHP_MINFO_FUNCTION(collections)
38
/* }}} */
39
40
/* {{{ collections_module_entry */
41
+static const zend_module_dep collections_deps[] = {
42
+ ZEND_MOD_REQUIRED("spl")
43
+ ZEND_MOD_REQUIRED("json")
44
+ ZEND_MOD_END
45
+};
46
+
47
zend_module_entry collections_module_entry = {
- STANDARD_MODULE_HEADER,
48
+ STANDARD_MODULE_HEADER_EX, NULL,
49
+ collections_deps,
50
"collections", /* Extension name */
51
NULL, /* zend_function_entry */
52
PHP_MINIT(collections), /* PHP_MINIT - Module initialization */
0 commit comments