Skip to content

Commit 1663ce3

Browse files
committed
Bump version 3.0
1 parent a9a6f78 commit 1663ce3

3 files changed

Lines changed: 16 additions & 6 deletions

File tree

CHANGELOG

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
V3 - 2011-02-12
1+
V3.0 - 2011-02-12
22

3-
Major refactoring, not backward compatible.
3+
Major refactoring, nearly BC compatible. See migration in same dir.
44

5-
* autoload friendly class/file names
6-
* builtin optional autoloader
5+
* PEAR conventions for files and class names
76
* PEAR coding standards
7+
* Builtin optional autoloader
8+
* Demeter's law compliance
89
* PHPUnit for tests instead of lime
910
* Mock github responses in tests
1011
* Allow different http drivers

README.markdown

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ A simple Object Oriented wrapper for GitHub API, written with PHP5.
77

88
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.
99

10+
## Features
11+
12+
* Covers 100% of GitHub API with PHP methods
13+
* Supports 3 authentication methods
14+
* Follows PEAR conventions and coding standard: autoload friendly
15+
* Light and fast thanks to lazy loading of API classes
16+
* Flexible and extensible thanks to dependency injection
17+
* Extensively tested and documented
18+
1019
## Requirements
1120

1221
* PHP 5.2 or 5.3.

lib/Github/Client.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

33
/**
4-
* Simple PHP Github client
4+
* Simple yet very cool PHP Github client
55
*
66
* @tutorial http://github.com/ornicar/php-github-api/blob/master/README.markdown
7-
* @version 3.0.0
7+
* @version 3.0
88
* @author Thibault Duplessis <thibault.duplessis at gmail dot com>
99
* @license MIT License
1010
*

0 commit comments

Comments
 (0)