Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit 4ca3e33

Browse files
Merge pull request #110 from phpv8/naming-is-hard
Update email and decouple from personal account
2 parents 051d100 + 202e2d6 commit 4ca3e33

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
@@ -6,8 +6,8 @@ I'm moving away from PHP world and all my PHP projects going to be abandoned too
66
# php-v8
77
PHP extension for V8 JavaScript engine
88

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)
1111
[![Docs](https://readthedocs.org/projects/php-v8/badge/)](https://php-v8.readthedocs.io)
1212

1313

@@ -44,7 +44,7 @@ If you have any other use, feels free to share
4444

4545

4646
## 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
4848
that brings [V8](https://developers.google.com/v8/intro) JavaScript engine API to PHP with some abstraction in mind and
4949
provides an accurate native V8 C++ API implementation available from PHP.
5050

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

9191
## Quick start
9292

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"`
9494

9595
## Stub files
9696

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

101-
composer require --dev pinepain/php-v8-stubs
101+
composer require --dev phpv8/php-v8-stubs
102102

103103
## High-level wrapper library
104104

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
106106
on top of php-v8 extension and makes embedding JavaScript in PHP easier.
107107

108108
## Installation
@@ -142,17 +142,17 @@ extensions with dependencies, you may find
142142
```
143143
$ brew tap homebrew/dupes
144144
$ brew tap homebrew/php
145-
$ brew tap pinepain/devtools
145+
$ brew tap phpv8/tap
146146
$ brew install php72 php72-v8
147147
$ php --ri v8
148148
```
149149

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.
151151

152152
### Building php-v8 from sources
153153

154154
```
155-
git clone https://github.com/pinepain/php-v8.git
155+
git clone https://github.com/phpv8/php-v8.git
156156
cd php-v8
157157
phpize && ./configure && make
158158
make test
@@ -178,11 +178,11 @@ $ sudo make install
178178

179179
### Docker
180180

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,
182182
it contains PHP 7.2, though you can change that by passing `--build-arg PHP=MAJOR.MINOR` where MAJOR.MINOR version
183183
present in [ondrej/php](https://launchpad.net/~ondrej/+archive/ubuntu/php) PPA.
184184

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

188188
### Docs
@@ -214,11 +214,11 @@ My thanks to the following people and projects, without whom this extension woul
214214

215215
## License
216216

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

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).
220220

221221

222222
[v8-hello-world]: https://chromium.googlesource.com/v8/v8/+/master/samples/hello-world.cc
223223
[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

‎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)

AltStyle によって変換されたページ (->オリジナル) /