We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2eecc commit c147eb2Copy full SHA for c147eb2
README.md
@@ -16,11 +16,11 @@ You need php 5.4 or higher to use this library.
16
----
17
18
## Get started ##
19
-Install via composer: `composer require mpscholten/github-api v0.1`
+Install via composer: `composer require mpscholten/github-api v0.3`
20
```json
21
{
22
"require": {
23
- "mpscholten/github-api": "v0.1"
+ "mpscholten/github-api": "v0.3"
24
}
25
26
```
@@ -74,6 +74,16 @@ $user->getOrganizations();
74
foreach ($user->getRepositories() as $repository) {
75
echo $repository->getName();
76
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
+}
87
88
89
0 commit comments