An open API service indexing awesome lists of open source software.

https://github.com/thinkphp/gists

A simple PHP class that provides an easy interface for gists GitHub.
https://github.com/thinkphp/gists

Last synced: 3 months ago
JSON representation

A simple PHP class that provides an easy interface for gists GitHub.

Awesome Lists containing this project

README

          

Gists
-----

A simple PHP class that provides an easy interface for gists GitHub.

Usage
-----

```php

require_once('src/gists.class.php');

$obj = new Gist();

$user = 'thinkphp';

$resp = json_decode( $obj->all( $user ), true );

print_r( $resp );
```