Skip to content

Commit d6f8ab0

Browse files
author
Arthur Cinader
authored
Merge pull request #306 from acinader/update-composer-to-parse-community
Update composer to point to parse-community
2 parents 9e2c3d0 + d65192c commit d6f8ab0

File tree

3 files changed

+12
-17
lines changed

3 files changed

+12
-17
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ into a single commit. Please provide ample explanation in the commit message.
1111
Installation
1212
------------
1313

14-
Testing the Parse PHP SDK requires having a working Parse Server instance to run against.
14+
Testing the Parse PHP SDK requires having a working Parse Server instance to run against.
1515
Additionally you'll need to add some cloud code to it.
1616

1717
To get started:
@@ -22,7 +22,7 @@ To get started:
2222
From here you have to setup an instance of parse server.
2323

2424
To get started quickly you can clone and run this [parse server test] project.
25-
It's setup with the appropriate configuration to run the php sdk test suite.
25+
It's setup with the appropriate configuration to run the php sdk test suite.
2626
Additionally it handles setting up mongodb for the server.
2727

2828
Alternately you can configure a compatible test server as follows:
@@ -71,4 +71,4 @@ If you have XDebug setup and can view code coverage please ensure that you do yo
7171
[Create Parse App]: https://parse.com/apps/new
7272
[XDebug]: https://xdebug.org/
7373
[parse server test]: https://github.com/montymxb/parse-server-test
74-
[Setup a local Parse Server instance]: https://github.com/ParsePlatform/parse-server#user-content-locally
74+
[Setup a local Parse Server instance]: https://github.com/parse-community/parse-server#user-content-locally

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Parse PHP SDK
22
-------------
33

44
The Parse PHP SDK gives you access to the powerful Parse cloud platform
5-
from your PHP app or script. Updated to work with the self-hosted Parse Server: https://github.com/parseplatform/parse-server
5+
from your PHP app or script. Updated to work with the self-hosted Parse Server: https://github.com/parse-community/parse-server
66

77
Installation
88
------------
@@ -76,7 +76,7 @@ Setting the http client can be done as follows:
7676
ParseClient::setHttpClient(new ParseCurlHttpClient());
7777

7878
// set stream http client
79-
// ** requires 'allow_url_fopen' to be enabled in php.ini **
79+
// ** requires 'allow_url_fopen' to be enabled in php.ini **
8080
ParseClient::setHttpClient(new ParseStreamHttpClient());
8181
```
8282

@@ -299,16 +299,16 @@ if(ParsePush::hasStatus($response)) {
299299
// handle a failed request
300300

301301
}
302-
302+
303303
// ...or get the push status string to check yourself
304304
$status = $pushStatus->getPushStatus();
305-
305+
306306
// get # pushes sent
307307
$sent = $pushStatus->getPushesSent();
308-
308+
309309
// get # pushes failed
310310
$failed = $pushStatus->getPushesFailed();
311-
311+
312312
}
313313
```
314314

@@ -323,4 +323,4 @@ the Parse PHP SDK. We welcome fixes and enhancements.
323323

324324
-----
325325

326-
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.
326+
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.

composer.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "Parse PHP SDK",
44
"keywords": ["parse", "sdk"],
55
"type": "library",
6-
"homepage": "https://github.com/parseplatform/parse-php-sdk",
6+
"homepage": "https://github.com/parse-community/parse-php-sdk",
77
"license": "Parse Platform License",
88
"authors": [
99
{
1010
"name": "Parse",
11-
"homepage": "https://github.com/parseplatform/parse-php-sdk/contributors"
11+
"homepage": "https://github.com/parse-community/parse-php-sdk/graphs/contributors"
1212
}
1313
],
1414
"require": {
@@ -30,10 +30,5 @@
3030
"psr-4": {
3131
"Parse\\Test\\": "tests/Parse/"
3232
}
33-
},
34-
"extra": {
35-
"branch-alias": {
36-
"dev-master": "1.1-dev"
37-
}
3833
}
3934
}

0 commit comments

Comments
 (0)