Skip to content

Commit

Permalink
Update references to github organization (#1311)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpedrie authored Sep 20, 2018
1 parent 84c9b8b commit c6c5ce7
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**PLEASE READ THIS ENTIRE MESSAGE**

Hello, and thank you for your contribution! Please note that this repository is
a read-only split of `GoogleCloudPlatform/google-cloud-php`. As such, we are
a read-only split of `googleapis/google-cloud-php`. As such, we are
unable to accept pull requests to this repository.

We welcome your pull request and would be happy to consider it for inclusion in
Expand All @@ -10,14 +10,14 @@ our library if you follow these steps:
* Clone the parent client library repository:

```sh
$ git clone [email protected]:GoogleCloudPlatform/google-cloud-php.git
$ git clone [email protected]:googleapis/google-cloud-php.git
```

* Move your changes into the correct location in that library. Library code
belongs in `Debugger/src`, and tests in `Debugger/tests`.

* Push the changes in a new branch to a fork, and open a new pull request
[here](https://github.com/GoogleCloudPlatform/google-cloud-php).
[here](https://github.com/googleapis/google-cloud-php).

Thanks again, and we look forward to seeing your proposed change!

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

We'd love to accept your patches and contributions to this project. We accept
and review pull requests against the main
[Google Cloud PHP](https://github.com/GoogleCloudPlatform/google-cloud-php)
[Google Cloud PHP](https://github.com/googleapis/google-cloud-php)
repository, which contains all of our client libraries. You will also need to
sign a Contributor License Agreement. For more details about how to contribute,
see the
[CONTRIBUTING.md](https://github.com/GoogleCloudPlatform/google-cloud-php/blob/master/CONTRIBUTING.md)
[CONTRIBUTING.md](https://github.com/googleapis/google-cloud-php/blob/master/CONTRIBUTING.md)
file in the main Google Cloud PHP repository.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
[![Latest Stable Version](https://poser.pugx.org/google/cloud-debugger/v/stable)](https://packagist.org/packages/google/cloud-debugger) [![Packagist](https://img.shields.io/packagist/dm/google/cloud-debugger.svg)](https://packagist.org/packages/google/cloud-debugger)

* [API documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/cloud-debugger/latest)
* [API documentation](http://googleapis.github.io/google-cloud-php/#/docs/cloud-debugger/latest)

**NOTE:** This repository is part of [Google Cloud PHP](https://github.com/googlecloudplatform/google-cloud-php). Any
**NOTE:** This repository is part of [Google Cloud PHP](https://github.com/googleapis/google-cloud-php). Any
support requests, bug reports, or development contributions should be directed to
that project.

Expand Down Expand Up @@ -87,7 +87,7 @@ please see our [gRPC installation guide](https://cloud.google.com/php/grpc).
### Authentication
Please see our [Authentication guide](https://github.com/GoogleCloudPlatform/google-cloud-php/blob/master/AUTHENTICATION.md) for more information
Please see our [Authentication guide](https://github.com/googleapis/google-cloud-php/blob/master/AUTHENTICATION.md) for more information
on authenticating your client. Once authenticated, you'll be ready to start making requests.

### Sample
Expand Down Expand Up @@ -141,8 +141,8 @@ This component is considered alpha. As such, it is still a work-in-progress and
2. Take a look at [in-depth usage samples][usage-samples].

[semaphore-extensions]: http://php.net/manual/en/book.sem.php
[batch-daemon]: https://github.com/GoogleCloudPlatform/google-cloud-php/blob/master/src/Core/Batch/BatchDaemon.php
[debugger-daemon]: http://googlecloudplatform.github.io/google-cloud-php/#/docs/cloud-debugger/master/debugger/daemon
[batch-daemon]: https://github.com/googleapis/google-cloud-php/blob/master/src/Core/Batch/BatchDaemon.php
[debugger-daemon]: http://googleapis.github.io/google-cloud-php/#/docs/cloud-debugger/master/debugger/daemon
[pecl-debugger]: https://pecl.php.net/package/stackdriver_debugger
[debugger-console]: https://console.cloud.google.com/debug
[using-debug-snapshots]: https://cloud.google.com/debugger/docs/debugging
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"extra": {
"component": {
"id": "cloud-debugger",
"target": "GoogleCloudPlatform/google-cloud-php-debugger.git",
"target": "googleapis/google-cloud-php-debugger.git",
"path": "Debugger",
"entry": "src/DebuggerClient.php"
}
Expand Down
2 changes: 1 addition & 1 deletion tests/System/E2ETest.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static function getRepo()
{
return getenv('TRAVIS_REPO_SLUG')
?: getenv('REPO_SLUG')
?: 'GoogleCloudPlatform/google-cloud-php';
?: 'googleapis/google-cloud-php';
}

public static function createComposerJson()
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/DaemonTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function testSpecifyExtSourceContext()
$context = [
'context' => [
'git' => [
'url' => 'https://github.com/GoogleCloudPlatform/google-cloud-php',
'url' => 'https://github.com/googleapis/google-cloud-php',
'revisionId' => 'master'
]
],
Expand Down Expand Up @@ -156,7 +156,7 @@ public function testDefaultSourceContext()
'context' => [
'git' => [
'revisionId' => '81b20d097da02ebb6c6fdfbf6900c67a90f2c54b',
'url' => 'https://github.com/GoogleCloudPlatform/google-cloud-php.git'
'url' => 'https://github.com/googleapis/google-cloud-php.git'
]
]
];
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/data/source-context.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"git": {
"revisionId": "81b20d097da02ebb6c6fdfbf6900c67a90f2c54b",
"url": "https://github.com/GoogleCloudPlatform/google-cloud-php.git"
"url": "https://github.com/googleapis/google-cloud-php.git"
}
}

0 comments on commit c6c5ce7

Please sign in to comment.