You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ V8Js is a PHP extension for Google's V8 Javascript engine.
5
5
6
6
The extension allows you to execute Javascript code in a secure sandbox from PHP. The executed code can be restricted using a time limit and/or memory limit. This provides the possibility to execute untrusted code with confidence.
7
7
8
+
**This is the PHP 7 branch of V8Js**, it requires PHP 7 and does *not* compile against PHP 5.x versions.
9
+
If you're running PHP 5.x, see the [master branch](https://github.com/preillyme/v8js/tree/master)
10
+
of this repository.
11
+
8
12
9
13
Minimum requirements
10
14
--------------------
@@ -16,10 +20,9 @@ Minimum requirements
16
20
V8 implements ECMAScript as specified in ECMA-262, 5th edition.
17
21
This extension makes use of V8 isolates to ensure separation between multiple V8Js instances and uses the new isolate-based mechanism to throw exceptions, hence the need for 3.24.6 or above.
18
22
19
-
- PHP 5.3.3+
23
+
- PHP 7.0.0+
20
24
21
25
This embedded implementation of the V8 engine uses thread locking so it should work with ZTS enabled.
0 commit comments