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

Commit 202e2d6

Browse files
committed
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 14 additions & 14 deletions
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

docs/development/release-libv8.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ After libv8 PPA build done
2525
#. Copy fresh ``libv8-X.Y`` build packages from ``experimental`` (default target for all libv8 builds we trigger)
2626
to it ``libv8-X.Y`` PPA. Do not rebuild, just copy binaries.
2727
#. **Wait for packages copied and published!**
28-
#. Build `pinepain/libv8`_ docker image, tag it with the
28+
#. Build `phpv8/libv8`_ docker image, tag it with the
2929
relevant v8 full version and push to Docker Hub.
3030
#. You may want to set proper ``V8`` version in ``php-v8`` by updating it in ``.travis.yml``.
3131
#. Make sure you have proper ``V8`` version set in ``packaging/Dockerfile`` under ``V8`` constant.
@@ -59,5 +59,5 @@ Building packages for macOS Homebrew
5959
#. Remove/reset formula ``revision`` if it is version bump and not rebuild.
6060
#. Build ``v8@X.Y`` (locally or with TravisCI if it provides relevant macOS version) and publish.
6161

62-
.. _php-v8: https://github.com/pinepain/php-v8
63-
.. _pinepain/libv8: https://github.com/pinepain/dockerfiles/tree/master/libv8
62+
.. _php-v8: https://github.com/phpv8/php-v8
63+
.. _phpv8/libv8: https://github.com/phpv8/dockerfiles/tree/master/libv8

docs/getting-started/index.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ Quick guide
8585
Docker
8686
""""""
8787

88-
There is default ``pinepain/php-v8`` docker image with basic dependencies to evaluate and play with php-v8:
88+
There is default ``phpv8/php-v8`` docker image with basic dependencies to evaluate and play with php-v8:
8989

9090
.. code-block:: bash
9191
92-
docker run -it pinepain/php-v8 bash -c "php test.php"
92+
docker run -it phpv8/php-v8 bash -c "php test.php"
9393
9494
9595
Ubuntu
@@ -111,7 +111,7 @@ extensions with dependencies, you may find following standalone PPAs useful:
111111

112112
- `pinepain/libv8-6.6 <https://launchpad.net/~pinepain/+archive/ubuntu/libv8-6.6>`_
113113
- `pinepain/experimental <https://launchpad.net/~pinepain/+archive/ubuntu/experimental>`_
114-
- `pinepain/php-v8 <https://launchpad.net/~pinepain/+archive/ubuntu/php-v8>`_
114+
- `phpv8/php-v8 <https://launchpad.net/~pinepain/+archive/ubuntu/php-v8>`_
115115

116116

117117

@@ -122,18 +122,18 @@ OS X (homebrew)
122122
123123
$ brew tap homebrew/dupes
124124
$ brew tap homebrew/php
125-
$ brew tap pinepain/devtools
125+
$ brew tap phpv8/tap
126126
$ brew install php71 php71-v8
127127
$ php --ri v8
128128
129-
For macOS php-v8 formulae and dependencies provided by `pinepain/devtools <https://github.com/pinepain/homebrew-devtools>`_ tap.
129+
For macOS php-v8 formulae and dependencies provided by `phpv8/tap <https://github.com/pinepain/homebrew-devtools>`_ tap.
130130

131131
Building php-v8 from sources
132132
----------------------------
133133

134134
.. code-block:: bash
135135
136-
git clone https://github.com/pinepain/php-v8.git
136+
git clone https://github.com/phpv8/php-v8.git
137137
cd php-v8
138138
phpize && ./configure && make
139139
make test
@@ -145,8 +145,8 @@ To install extension globally run
145145
$ sudo make install
146146
147147
.. _V8: https://developers.google.com/v8/intro
148-
.. _php-v8: https://github.com/pinepain/php-v8
148+
.. _php-v8: https://github.com/phpv8/php-v8
149149
.. _Hello World: https://chromium.googlesource.com/v8/v8/+/master/samples/hello-world.cc
150150
.. _Getting Started: https://developers.google.com/v8/intro
151-
.. _php-v8-stubs: https://github.com/pinepain/php-v8-stubs
151+
.. _php-v8-stubs: https://github.com/phpv8/php-v8-stubs
152152
.. _ECMA: http://kangax.github.io/compat-table

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ Content
3838
development/index
3939

4040
.. _V8: https://developers.google.com/v8/intro
41-
.. _php-v8: https://github.com/pinepain/php-v8
41+
.. _php-v8: https://github.com/phpv8/php-v8

package.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ This file is part of the pinepain/php-v8 PHP extension.
3+
~ This file is part of the phpv8/php-v8 PHP extension.
44
~
5-
~ Copyright (c) 2015-2018 Bogdan Padalko <pinepain@gmail.com>
5+
~ Copyright (c) 2015-2018 Bogdan Padalko <thepinepain@gmail.com>
66
~
77
~ Licensed under the MIT license: http://opensource.org/licenses/MIT
88
~
@@ -23,7 +23,7 @@
2323
<lead>
2424
<name>Bogdan Padalko</name>
2525
<user>pinepain</user>
26-
<email>pinepain@gmail.com</email>
26+
<email>thepinepain@gmail.com</email>
2727
<active>yes</active>
2828
</lead>
2929
<date>2018-02-27</date>

perf/composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "pinepain/php-v8-perf",
2+
"name": "phpv8/php-v8-perf",
33
"type": "library",
4-
"description": "Performance tests for pinepain/php-v8 php extension",
4+
"description": "Performance tests for phpv8/php-v8 php extension",
55
"keywords": ["dev", "performance", "benchmark", "tests", "php-v8", "v8", "js", "javascript"],
6-
"homepage": "https://github.com/pinepain/php-v8-perf",
6+
"homepage": "https://github.com/phpv8/php-v8/tree/master/perf",
77
"license": "MIT",
88
"authors": [
99
{
1010
"name": "Bogdan Padalko",
11-
"email": "pinepain@gmail.com",
11+
"email": "thepinepain@gmail.com",
1212
"homepage": "https://github.com/pinepain"
1313
}
1414
],
@@ -18,7 +18,7 @@
1818
},
1919
"autoload": {
2020
"psr-4": {
21-
"Pinepain\\V8\\Tests\\Perf\\": "src/"
21+
"PhpV8\\V8\\Tests\\Perf\\": "src/"
2222
}
2323
}
2424
}

perf/src/CreatePrimitiveValue.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php declare(strict_types=1);
22

33
/**
4-
* This file is part of the pinepain/php-v8 PHP extension.
4+
* This file is part of the phpv8/php-v8 PHP extension.
55
*
6-
* Copyright (c) 2015-2018 Bogdan Padalko <pinepain@gmail.com>
6+
* Copyright (c) 2015-2018 Bogdan Padalko <thepinepain@gmail.com>
77
*
88
* Licensed under the MIT license: http://opensource.org/licenses/MIT
99
*
@@ -13,7 +13,7 @@
1313
*/
1414

1515

16-
namespace Pinepain\V8\Tests\Perf;
16+
namespace PhpV8\V8\Tests\Perf;
1717

1818

1919
use V8\BooleanValue;

perf/src/GetObjectProperty.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php declare(strict_types=1);
22

33
/**
4-
* This file is part of the pinepain/php-v8 PHP extension.
4+
* This file is part of the phpv8/php-v8 PHP extension.
55
*
6-
* Copyright (c) 2015-2018 Bogdan Padalko <pinepain@gmail.com>
6+
* Copyright (c) 2015-2018 Bogdan Padalko <thepinepain@gmail.com>
77
*
88
* Licensed under the MIT license: http://opensource.org/licenses/MIT
99
*
@@ -13,7 +13,7 @@
1313
*/
1414

1515

16-
namespace Pinepain\V8\Tests\Perf;
16+
namespace PhpV8\V8\Tests\Perf;
1717

1818

1919
use V8\Context;

perf/src/InvokeFunction.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php declare(strict_types=1);
22

33
/**
4-
* This file is part of the pinepain/php-v8 PHP extension.
4+
* This file is part of the phpv8/php-v8 PHP extension.
55
*
6-
* Copyright (c) 2015-2018 Bogdan Padalko <pinepain@gmail.com>
6+
* Copyright (c) 2015-2018 Bogdan Padalko <thepinepain@gmail.com>
77
*
88
* Licensed under the MIT license: http://opensource.org/licenses/MIT
99
*
@@ -13,7 +13,7 @@
1313
*/
1414

1515

16-
namespace Pinepain\V8\Tests\Perf;
16+
namespace PhpV8\V8\Tests\Perf;
1717

1818

1919
use V8\Context;

0 commit comments

Comments
 (0)