File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Minimum requirements
21
21
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
22
22
V8 implements ECMAScript as specified in ECMA-262, 5th edition.
23
23
24
- This extension requires V8 6.9 (6.9.427.18 is known to work) or higher.
24
+ This extension requires V8 7.5 or higher.
25
25
26
26
V8 releases are published rather quickly and the V8 team usually provides security support
27
27
for the version line shipped with the Chrome browser (stable channel) and newer (only).
Original file line number Diff line number Diff line change @@ -140,8 +140,8 @@ int main ()
140
140
set $ac_cv_v8_version
141
141
IFS=$ac_IFS
142
142
V8_API_VERSION=`expr [ $] 1 \* 1000000 + [ $] 2 \* 1000 + [ $] 3`
143
- if test "$V8_API_VERSION" -lt 6009000 ; then
144
- AC_MSG_ERROR ( [ libv8 must be version 6.9 or greater] )
143
+ if test "$V8_API_VERSION" -lt 7005000 ; then
144
+ AC_MSG_ERROR ( [ libv8 must be version 7.5 or greater] )
145
145
fi
146
146
AC_DEFINE_UNQUOTED ( [ PHP_V8_API_VERSION] , $V8_API_VERSION , [ ] )
147
147
AC_DEFINE_UNQUOTED ( [ PHP_V8_VERSION] , "$ac_cv_v8_version" , [ ] )
You can’t perform that action at this time.
0 commit comments