Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Bump version 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Feb 13, 2011
1 parent a9a6f78 commit 1663ce3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG
@@ -1,10 +1,11 @@
V3 - 2011-02-12
V3.0 - 2011-02-12

Major refactoring, not backward compatible.
Major refactoring, nearly BC compatible. See migration in same dir.

* autoload friendly class/file names
* builtin optional autoloader
* PEAR conventions for files and class names
* PEAR coding standards
* Builtin optional autoloader
* Demeter's law compliance
* PHPUnit for tests instead of lime
* Mock github responses in tests
* Allow different http drivers
Expand Down
9 changes: 9 additions & 0 deletions README.markdown
Expand Up @@ -7,6 +7,15 @@ A simple Object Oriented wrapper for GitHub API, written with PHP5.

Uses [GitHub API v2](http://develop.github.com/). The way the Object Oriented Interface is organized is mainly inspired by the way GitHub has organized their API Documentation.

## Features

* Covers 100% of GitHub API with PHP methods
* Supports 3 authentication methods
* Follows PEAR conventions and coding standard: autoload friendly
* Light and fast thanks to lazy loading of API classes
* Flexible and extensible thanks to dependency injection
* Extensively tested and documented

## Requirements

* PHP 5.2 or 5.3.
Expand Down
4 changes: 2 additions & 2 deletions lib/Github/Client.php
@@ -1,10 +1,10 @@
<?php

/**
* Simple PHP Github client
* Simple yet very cool PHP Github client
*
* @tutorial http://github.com/ornicar/php-github-api/blob/master/README.markdown
* @version 3.0.0
* @version 3.0
* @author Thibault Duplessis <thibault.duplessis at gmail dot com>
* @license MIT License
*
Expand Down

0 comments on commit 1663ce3

Please sign in to comment.