@@ -6,8 +6,8 @@ I'm moving away from PHP world and all my PHP projects going to be abandoned too
6
6
# php-v8
7
7
PHP extension for V8 JavaScript engine
8
8
9
- [ ![ Build Status] ( https://api.travis-ci.org/pinepain /php-v8.svg?branch=master )] ( https://travis-ci.org/pinepain /php-v8 )
10
- [ ![ GitHub license] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( https://raw.githubusercontent.com/pinepain /php-v8/master/LICENSE )
9
+ [ ![ Build Status] ( https://api.travis-ci.org/phpv8 /php-v8.svg?branch=master )] ( https://travis-ci.org/phpv8 /php-v8 )
10
+ [ ![ GitHub license] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( https://raw.githubusercontent.com/phpv8 /php-v8/master/LICENSE )
11
11
[ ![ Docs] ( https://readthedocs.org/projects/php-v8/badge/ )] ( https://php-v8.readthedocs.io )
12
12
13
13
@@ -44,7 +44,7 @@ If you have any other use, feels free to share
44
44
45
45
46
46
## About
47
- [ php-v8] ( https://github.com/pinepain /php-v8 ) is a PHP 7.x extension
47
+ [ php-v8] ( https://github.com/phpv8 /php-v8 ) is a PHP 7.x extension
48
48
that brings [ V8] ( https://developers.google.com/v8/intro ) JavaScript engine API to PHP with some abstraction in mind and
49
49
provides an accurate native V8 C++ API implementation available from PHP.
50
50
@@ -90,19 +90,19 @@ And it also doesn't limit you from V8 API utilizing to implement more amazing st
90
90
91
91
## Quick start
92
92
93
- You can try php-v8 in ` pinepain /php-v8` : ` docker run -it pinepain /php-v8 bash -c "php test.php" `
93
+ You can try php-v8 in ` phpv8 /php-v8` : ` docker run -it phpv8 /php-v8 bash -c "php test.php" `
94
94
95
95
## Stub files
96
96
97
97
If you are also using Composer, it is recommended to add the [ php-v8-stub] [ php-v8-stubs ]
98
98
package as a dev-mode requirement. It provides skeleton definitions and annotations to enable support for auto-completion
99
99
in your IDE and other code-analysis tools.
100
100
101
- composer require --dev pinepain /php-v8-stubs
101
+ composer require --dev phpv8 /php-v8-stubs
102
102
103
103
## High-level wrapper library
104
104
105
- There is [ pinepain /js-sandbox] ( https://github.com/pinepain /js-sandbox ) library that provides high-level abstraction
105
+ There is [ phpv8 /js-sandbox] ( https://github.com/phpv8 /js-sandbox ) library that provides high-level abstraction
106
106
on top of php-v8 extension and makes embedding JavaScript in PHP easier.
107
107
108
108
## Installation
@@ -142,17 +142,17 @@ extensions with dependencies, you may find
142
142
```
143
143
$ brew tap homebrew/dupes
144
144
$ brew tap homebrew/php
145
- $ brew tap pinepain/devtools
145
+ $ brew tap phpv8/tap
146
146
$ brew install php72 php72-v8
147
147
$ php --ri v8
148
148
```
149
149
150
- For macOS php-v8 formulae and dependencies provided by [ pinepain/devtools ] ( https://github.com/pinepain /homebrew-devtools ) tap.
150
+ For macOS php-v8 formulae and dependencies provided by [ phpv8/tap ] ( https://github.com/phpv8 /homebrew-tap ) tap.
151
151
152
152
### Building php-v8 from sources
153
153
154
154
```
155
- git clone https://github.com/pinepain /php-v8.git
155
+ git clone https://github.com/phpv8 /php-v8.git
156
156
cd php-v8
157
157
phpize && ./configure && make
158
158
make test
@@ -178,11 +178,11 @@ $ sudo make install
178
178
179
179
### Docker
180
180
181
- First, let's build docker image ` docker build -t pinepain /php-v8 . ` that we'll use later for development. By default,
181
+ First, let's build docker image ` docker build -t phpv8 /php-v8 . ` that we'll use later for development. By default,
182
182
it contains PHP 7.2, though you can change that by passing ` --build-arg PHP=MAJOR.MINOR ` where MAJOR.MINOR version
183
183
present in [ ondrej/php] ( https://launchpad.net/~ondrej/+archive/ubuntu/php ) PPA.
184
184
185
- To start playing with php-v8 in docker, run ```docker run -e TEST_PHP_ARGS -v ` pwd ` :/root/php-v8 -it pinepain /php-v8 bash``.
185
+ To start playing with php-v8 in docker, run ```docker run -e TEST_PHP_ARGS -v ` pwd ` :/root/php-v8 -it phpv8 /php-v8 bash``.
186
186
Now you can build php-v8 as usual with ` phpize && ./configure && make ` . Don't forget to run ` make test ` !
187
187
188
188
### Docs
@@ -214,11 +214,11 @@ My thanks to the following people and projects, without whom this extension woul
214
214
215
215
## License
216
216
217
- Copyright (c) 2015-2018 Bogdan Padalko < ; pinepain @gmail.com> ;
217
+ Copyright (c) 2015-2018 Bogdan Padalko < ; thepinepain @gmail.com> ;
218
218
219
- [ php-v8] ( https://github.com/pinepain /php-v8 ) PHP extension is licensed under the [ MIT license] ( http://opensource.org/licenses/MIT ) .
219
+ [ php-v8] ( https://github.com/phpv8 /php-v8 ) PHP extension is licensed under the [ MIT license] ( http://opensource.org/licenses/MIT ) .
220
220
221
221
222
222
[ v8-hello-world ] : https://chromium.googlesource.com/v8/v8/+/master/samples/hello-world.cc
223
223
[ v8-intro ] : https://developers.google.com/v8/intro
224
- [ php-v8-stubs ] : https://github.com/pinepain /php-v8-stubs
224
+ [ php-v8-stubs ] : https://github.com/phpv8 /php-v8-stubs
0 commit comments