Skip to content

Commit fa613c5

Browse files
committed
Update links to old Github repo
1 parent 54fd987 commit fa613c5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.MacOS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ with (compared to gcc).
7272

7373
```
7474
cd /tmp
75-
git clone https://github.com/preillyme/v8js.git
75+
git clone https://github.com/phpv8/v8js.git
7676
cd v8js
7777
phpize
7878
./configure CXXFLAGS="-Wno-c++11-narrowing"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ V8Js
33

44
[![Build Status](https://travis-ci.org/phpv8/v8js.svg?branch=php7)](https://travis-ci.org/phpv8/v8js)
55
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/gr8fkq8c08s06h31/branch/php7?svg=true)](https://ci.appveyor.com/project/stesie/v8js)
6-
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/preillyme/v8js/master/LICENSE)
7-
[![Join the chat at https://gitter.im/preillyme/v8js](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/preillyme/v8js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/phpv8/v8js/master/LICENSE)
7+
[![Join the chat at https://gitter.im/phpv8/v8js](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/phpv8/v8js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
88

99
V8Js is a PHP extension for Google's V8 Javascript engine.
1010

1111
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.
1212

1313
**This is the PHP 7 branch of V8Js**, it requires PHP 7 and does *not* compile against PHP 5.x versions.
14-
If you're running PHP 5.x, see the [master branch](https://github.com/preillyme/v8js/tree/master)
14+
If you're running PHP 5.x, see the [master branch](https://github.com/phpv8/v8js/tree/master)
1515
of this repository.
1616

1717

v8js_object_export.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ static void v8js_construct_callback(const v8::FunctionCallbackInfo<v8::Value>& i
223223
}
224224

225225
// Increase the reference count of this value because we're storing it internally for use later
226-
// See https://github.com/preillyme/v8js/issues/6
226+
// See https://github.com/phpv8/v8js/issues/6
227227
Z_ADDREF_P(&value);
228228
} else {
229229
// Object created from JavaScript context. Need to create PHP object first.

0 commit comments

Comments
 (0)