Skip to content
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit 202e2d6

Browse files
committedJul 7, 2018
Update email and decouple from personal account
1 parent bdaf7b0 commit 202e2d6

File tree

210 files changed

+451
-456
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+451
-456
lines changed
 

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2015-2018 Bogdan Padalko <pinepain@gmail.com>
3+
Copyright (c) 2015-2018 Bogdan Padalko <thepinepain@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

‎README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# php-v8
22
PHP extension for V8 JavaScript engine
33

4-
[![Build Status](https://api.travis-ci.org/pinepain/php-v8.svg?branch=master)](https://travis-ci.org/pinepain/php-v8)
5-
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/pinepain/php-v8/master/LICENSE)
4+
[![Build Status](https://api.travis-ci.org/phpv8/php-v8.svg?branch=master)](https://travis-ci.org/phpv8/php-v8)
5+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/phpv8/php-v8/master/LICENSE)
66
[![Docs](https://readthedocs.org/projects/php-v8/badge/)](https://php-v8.readthedocs.io)
77

88

@@ -39,7 +39,7 @@ If you have any other use, feels free to share
3939

4040

4141
## About
42-
[php-v8](https://github.com/pinepain/php-v8) is a PHP 7.x extension
42+
[php-v8](https://github.com/phpv8/php-v8) is a PHP 7.x extension
4343
that brings [V8](https://developers.google.com/v8/intro) JavaScript engine API to PHP with some abstraction in mind and
4444
provides an accurate native V8 C++ API implementation available from PHP.
4545

@@ -85,19 +85,19 @@ And it also doesn't limit you from V8 API utilizing to implement more amazing st
8585

8686
## Quick start
8787

88-
You can try php-v8 in `pinepain/php-v8`: `docker run -it pinepain/php-v8 bash -c "php test.php"`
88+
You can try php-v8 in `phpv8/php-v8`: `docker run -it phpv8/php-v8 bash -c "php test.php"`
8989

9090
## Stub files
9191

9292
If you are also using Composer, it is recommended to add the [php-v8-stub][php-v8-stubs]
9393
package as a dev-mode requirement. It provides skeleton definitions and annotations to enable support for auto-completion
9494
in your IDE and other code-analysis tools.
9595

96-
composer require --dev pinepain/php-v8-stubs
96+
composer require --dev phpv8/php-v8-stubs
9797

9898
## High-level wrapper library
9999

100-
There is [pinepain/js-sandbox](https://github.com/pinepain/js-sandbox) library that provides high-level abstraction
100+
There is [phpv8/js-sandbox](https://github.com/phpv8/js-sandbox) library that provides high-level abstraction
101101
on top of php-v8 extension and makes embedding JavaScript in PHP easier.
102102

103103
## Installation
@@ -137,17 +137,17 @@ extensions with dependencies, you may find
137137
```
138138
$ brew tap homebrew/dupes
139139
$ brew tap homebrew/php
140-
$ brew tap pinepain/devtools
140+
$ brew tap phpv8/tap
141141
$ brew install php72 php72-v8
142142
$ php --ri v8
143143
```
144144

145-
For macOS php-v8 formulae and dependencies provided by [pinepain/devtools](https://github.com/pinepain/homebrew-devtools) tap.
145+
For macOS php-v8 formulae and dependencies provided by [phpv8/tap](https://github.com/phpv8/homebrew-tap) tap.
146146

147147
### Building php-v8 from sources
148148

149149
```
150-
git clone https://github.com/pinepain/php-v8.git
150+
git clone https://github.com/phpv8/php-v8.git
151151
cd php-v8
152152
phpize && ./configure && make
153153
make test
@@ -173,11 +173,11 @@ $ sudo make install
173173

174174
### Docker
175175

176-
First, let's build docker image `docker build -t pinepain/php-v8 .` that we'll use later for development. By default,
176+
First, let's build docker image `docker build -t phpv8/php-v8 .` that we'll use later for development. By default,
177177
it contains PHP 7.2, though you can change that by passing `--build-arg PHP=MAJOR.MINOR` where MAJOR.MINOR version
178178
present in [ondrej/php](https://launchpad.net/~ondrej/+archive/ubuntu/php) PPA.
179179

180-
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``.
180+
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``.
181181
Now you can build php-v8 as usual with `phpize && ./configure && make`. Don't forget to run `make test`!
182182

183183
### Docs
@@ -209,11 +209,11 @@ My thanks to the following people and projects, without whom this extension woul
209209

210210
## License
211211

212-
Copyright (c) 2015-2018 Bogdan Padalko &lt;pinepain@gmail.com&gt;
212+
Copyright (c) 2015-2018 Bogdan Padalko &lt;thepinepain@gmail.com&gt;
213213

214-
[php-v8](https://github.com/pinepain/php-v8) PHP extension is licensed under the [MIT license](http://opensource.org/licenses/MIT).
214+
[php-v8](https://github.com/phpv8/php-v8) PHP extension is licensed under the [MIT license](http://opensource.org/licenses/MIT).
215215

216216

217217
[v8-hello-world]: https://chromium.googlesource.com/v8/v8/+/master/samples/hello-world.cc
218218
[v8-intro]: https://developers.google.com/v8/intro
219-
[php-v8-stubs]: https://github.com/pinepain/php-v8-stubs
219+
[php-v8-stubs]: https://github.com/phpv8/php-v8-stubs

0 commit comments

Comments
 (0)
This repository has been archived.