jbroadway / githubfetcher
Very simple Github public project fetching tool.
dev-master
2012-01-12 21:26 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-10-25 06:31:12 UTC
README
- Copyright: (c) 2012 Johnny Broadway
- License: http://www.opensource.org/licenses/mit-license.php
A very basic Github public project fetching tool. Uses v3 of the Github API through CURL. Useful for quickly fetching a project from Github, and much smaller than the full Github PHP client library.
Usage:
<?php require 'GithubFetcher.php'; $github = new GithubFetcher ('git://github.com/codeguy/Slim.git'); // get all files/folders from the repository $tree = $github->tree (); $first_file = false foreach ($tree as $item) { printf ("%s: %s\n", $item->type, $item->path); if (! $first_file && $item->type === 'blob') { $first_file = $item; } } // print the contents of the file echo $github->get ($first_file); ?>