You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace the `/path/to/lib/` path with the path you used for php-github-api installation.
38
+
TODO: More examples how to install with composer. Some example of composer.json files. Add to packagist
37
39
38
-
> php-github-api follows the PEAR convention names for its classes, which means you can easily integrate php-github-api classes loading in your own autoloader.
40
+
> php-github-api follows the PSR-0 convention names for its classes, which means you can easily integrate php-github-api classes loading in your own autoloader.
39
41
40
42
## instantiate a new github client
41
43
42
44
```php
43
-
$github = new Github_Client();
45
+
$github = new Github\Client();
44
46
```
45
47
46
48
From this object, you can access to all GitHub apis, listed below.
@@ -55,15 +57,9 @@ From this object, you can access to all GitHub apis, listed below.
55
57
<ahref='#nav'alt='Back to the navigation'>Go back to the Navigation</a>
56
58
57
59
Searching users, getting user information and managing authenticated user account information.
58
-
Wrap [GitHub User API](http://develop.github.com/p/users.html).
0 commit comments