Skip to content

Commit 07dd4b4

Browse files
committed
Readme etc
1 parent 4ec6eb3 commit 07dd4b4

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 8.x (UNOFFICIAL)
44

5-
- 8.0.0-rc.1
5+
- 8.0.0-rc.2
66
- Requires PHP 8.1.
77
- Defaults to Facebook Graph v20.0, instead of v2.10 which is no longer accessible.
88
- Added a few more objects/types. Please open a PR if you want to add more types.

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ try {
5454
// If you provided a 'default_access_token', the '{access-token}' is optional.
5555
$response = $fb->get('/me', '{access-token}');
5656

57-
// To decode the response to a PHP class, provide the class of the root node in the response. You will have to match
58-
// this manually based on the endpoint you requested. Please do open a pull request if you want to add more types.
57+
// To decode the response to a PHP class, provide the class of the root node in the
58+
// response. You will have to match this manually based on the endpoint you
59+
// requested. Please do open a pull request if you want to add more types.
5960

6061
/** @var GraphUser $me */
6162
$me = $response->getGraphNode(GraphUser::class);
@@ -77,8 +78,8 @@ try {
7778

7879
## Tests
7980

80-
1. [Composer](https://getcomposer.org/) is a prerequisite for running the tests. Install composer globally, then
81-
run `composer install` to install required files.
81+
1. [Composer](https://getcomposer.org/) is a prerequisite for running the tests.
82+
Install composer globally, then run `composer install` to install required files.
8283
2. The tests can be executed by running this command from the root directory:
8384

8485
```bash
@@ -87,4 +88,5 @@ $ ./vendor/bin/phpunit
8788

8889
## License
8990

90-
Please see the [license file](https://github.com/facebook/php-graph-sdk/blob/master/LICENSE) for more information.
91+
Please see the [license file](https://github.com/facebook/php-graph-sdk/blob/master/LICENSE)
92+
for more information.

0 commit comments

Comments
 (0)