This repository was archived by the owner on Mar 29, 2024. It is now read-only.
File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 17
17
- NO_INTERACTION=1
18
18
- TEST_TIMEOUT=120
19
19
matrix :
20
- - V8=5.8
21
- - V8=5.8 TEST_PHP_ARGS=-m
20
+ - V8=5.9
21
+ - V8=5.9 TEST_PHP_ARGS=-m
22
22
23
23
before_install :
24
24
- sudo add-apt-repository ppa:pinepain/libv8-${V8} -y
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ in your IDE and other code-analysis tools.
73
73
### Requirements
74
74
75
75
#### V8
76
- You will need a recent v8 Google JavaScript engine version installed. At this time the extension is tested on 5.8.168 .
76
+ You will need a recent v8 Google JavaScript engine version installed. At this time the extension is tested on 5.9.5 .
77
77
78
78
#### PHP
79
79
This extension is PHP7-only. It works and tested with both PHP 7.0 and PHP 7.1.
@@ -96,7 +96,7 @@ $ php --ri v8
96
96
97
97
While [ pinepain/php] ( https://launchpad.net/~pinepain/+archive/ubuntu/php ) PPA targets to contain all necessary
98
98
extensions with dependencies, you may find
99
- [ pinepain/libv8-5.8 ] ( https://launchpad.net/~pinepain/+archive/ubuntu/libv8-5.8 ) ,
99
+ [ pinepain/libv8-5.9 ] ( https://launchpad.net/~pinepain/+archive/ubuntu/libv8-5.9 ) ,
100
100
[ pinepain/libv8-experimental] ( https://launchpad.net/~pinepain/+archive/ubuntu/libv8-experimental ) and
101
101
[ pinepain/php-v8] ( https://launchpad.net/~pinepain/+archive/ubuntu/php-v8 ) standalone PPAs useful.
102
102
@@ -108,7 +108,7 @@ $ brew tap homebrew/dupes
108
108
$ brew tap homebrew/php
109
109
$ brew tap pinepain/devtools
110
110
$ brew install php70
111
- $ brew install v8@5.8
111
+ $ brew install v8@5.9
112
112
$ brew install php70-v8
113
113
$ php --ri v8
114
114
```
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ if test "$PHP_V8" != "no"; then
8
8
SEARCH_PATH="/usr/local /usr"
9
9
SEARCH_FOR="include/v8.h"
10
10
11
- V8_MIN_API_VERSION_STR=5.8.168
11
+ V8_MIN_API_VERSION_STR=5.9.5
12
12
13
13
DESIRED_V8_VERSION=`echo "${V8_MIN_API_VERSION_STR}" | $AWK 'BEGIN { FS = "."; } { printf "%s.%s", [ $] 1, [ $] 2;}'`
14
14
You can’t perform that action at this time.
0 commit comments