Skip to content

Commit 4393ca5

Browse files
author
Caitlin Bales (MSFT)
authored
Update README.md
1 parent b9cda36 commit 4393ca5

1 file changed

Lines changed: 18 additions & 16 deletions

File tree

README.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,43 @@
1-
# Getting started with the Microsoft Graph SDK for PHP
1+
# Get started with the Microsoft Graph SDK for PHP
22

3-
*This SDK is currently in preview, please continue to provide [feedback](https://github.com/microsoftgraph/msgraph-sdk-php/issues/new) as we iterate towards a production supported library.*
3+
*This SDK is currently in preview. Please continue to provide [feedback](https://github.com/microsoftgraph/msgraph-sdk-php/issues/new) as we iterate towards a production-supported library.*
44

55
[![Build Status](https://travis-ci.org/microsoftgraph/msgraph-sdk-php.svg?branch=master)](https://travis-ci.org/microsoftgraph/msgraph-sdk-php)
66

77

8-
## Installation
9-
The PHP SDK can be installed with Composer:
8+
## Install the SDK
9+
You can install the PHP SDK with Composer.
1010
```
1111
{
1212
"require": {
1313
"Microsoft/Graph": "0.1.*"
1414
}
1515
}
1616
```
17-
## Getting started
17+
## Get started with Microsoft Graph
1818

1919
### Register your application
2020

21-
Register your application to use Microsoft Graph API using one of the following
21+
Register your application to use the Microsoft Graph API by using one of the following
2222
supported authentication portals:
2323

2424
* [Microsoft Application Registration Portal](https://apps.dev.microsoft.com) (**Recommended**):
25-
Register a new application that authenticates using the v2.0 authentication endpoint. This endpoint autthenticates both personal (Microsoft) and work or school (Azure Active Directory) accounts.
25+
Register a new application that authenticates using the v2.0 authentication endpoint. This endpoint authenticates both personal (Microsoft) and work or school (Azure Active Directory) accounts.
2626
* [Microsoft Azure Active Directory](https://manage.windowsazure.com): Register
2727
a new application in your tenant's Active Directory to support work or school
2828
users for your tenant, or multiple tenants.
2929

3030
### Authenticate with the Microsoft Graph service
3131

3232
The Microsoft Graph SDK for PHP does not include any default authentication implementations.
33-
Instead, the user will want to authenticate with the library of their choice, or against the OAuth
33+
Instead, you can authenticate with the library of your choice, or against the OAuth
3434
endpoint directly.
3535

36-
See the [PHP Connect Sample](https://github.com/microsoftgraph/php-rest-connect-sample.php) for connecting with OAuth2.
36+
To connect with Oauth2, see the [PHP Connect Sample](https://github.com/microsoftgraph/php-rest-connect-sample.php).
3737

38-
### Usage example
38+
### Call Microsoft Graph
39+
40+
The following is an example that shows how to call Microsoft Graph.
3941

4042
```php
4143
use Microsoft\Graph\Graph;
@@ -56,11 +58,11 @@ class UsageExample
5658
}
5759
```
5860

59-
## Development
61+
## Develop
6062

61-
### Running Tests
63+
### Run Tests
6264

63-
Run ```vendor/bin/phpunit``` from the base directory
65+
Run ```vendor/bin/phpunit``` from the base directory.
6466

6567

6668
## Documentation and resources
@@ -71,12 +73,12 @@ Run ```vendor/bin/phpunit``` from the base directory
7173

7274
* [Examples](https://github.com/microsoftgraph/msgraph-sdk-php/wiki/Example-calls)
7375

74-
* [Microsoft Graph API](https://graph.microsoft.io)
76+
* [Microsoft Graph website](https://graph.microsoft.io)
7577

7678
## Issues
7779

78-
To view or log issues, see [issues](https://github.com/microsoftgraph/msgraph-sdk-php/issues).
80+
View or log issues on the [Issues](https://github.com/microsoftgraph/msgraph-sdk-php/issues) tab in the repo.
7981

80-
## License
82+
## Copyright and license
8183

8284
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT [license](LICENSE).

0 commit comments

Comments
 (0)