diff options
author | Peter Kokot <peterkokot@gmail.com> | 2019-07-22 23:25:44 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-07-24 22:19:33 +0200 |
commit | dee243d475b088189862d30755aac7bb9cdd61b3 (patch) | |
tree | 2ac51fafad6cceb6a5d2850a2a9e64ad9088295c /ext/json/php_json.h | |
parent | a3169964c0d5b5fc3e25c5d912cd7f8af75fcd22 (diff) | |
download | php-git-dee243d475b088189862d30755aac7bb9cdd61b3.tar.gz |
Bump PHP_JSON_VERSION to PHP_VERSION
Closes GH-4459
Diffstat (limited to 'ext/json/php_json.h')
-rw-r--r-- | ext/json/php_json.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/json/php_json.h b/ext/json/php_json.h index 50ef76107b..99afe8dd2d 100644 --- a/ext/json/php_json.h +++ b/ext/json/php_json.h @@ -20,9 +20,11 @@ #ifndef PHP_JSON_H #define PHP_JSON_H -#define PHP_JSON_VERSION "1.7.0" +#include "php_version.h" #include "zend_smart_str_public.h" +#define PHP_JSON_VERSION PHP_VERSION + extern zend_module_entry json_module_entry; #define phpext_json_ptr &json_module_entry |