Skip to content

Commit c147eb2

Browse files
committed
Update README.md
1 parent 4f2eecc commit c147eb2

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ You need php 5.4 or higher to use this library.
1616
----
1717

1818
## Get started ##
19-
Install via composer: `composer require mpscholten/github-api v0.1`
19+
Install via composer: `composer require mpscholten/github-api v0.3`
2020
```json
2121
{
2222
"require": {
23-
"mpscholten/github-api": "v0.1"
23+
"mpscholten/github-api": "v0.3"
2424
}
2525
}
2626
```
@@ -74,6 +74,16 @@ $user->getOrganizations();
7474
foreach ($user->getRepositories() as $repository) {
7575
echo $repository->getName();
7676
}
77+
78+
// with the 'user:email' oauth scope
79+
$user->getPrimaryEmail();
80+
$user->getEmails();
81+
82+
foreach ($user->getEmails() as $email) {
83+
if ($email->isVerified()) {
84+
echo $email;
85+
}
86+
}
7787
```
7888

7989

0 commit comments

Comments
 (0)