ibonly/github-status-evangelists
Composer 安装命令:
composer require ibonly/github-status-evangelists
包简介
A package that grade a github user based on the user's contribution on open source project.
README 文档
README
This Package analyzes the contributions of a Github users based on the number of repositories a user has. It also ranks the user based on the author's perspective on the number of repositories individual user has. The ranking is shown bellow:
Number of Repository < 5 - Zero Evanglist
5 <= Number of Repository <= 10 - Junior Evanglist
11 <= Number of Repository <= 20 - Associate Evanglist
Number of Repository >= 21 - Senior Evanglist
Installation
PHP 5.5+ and Composer are required.
Via Composer
$ composer require ibonly/github-status-evangelists
$ composer install
Usage 1
use Ibonly\GithubStatusEvangelist\EvangelistStatus;
$status = new EvangelistStatus($username);
Note that $username is the GitHub username of the individual.
$status->getStatus();
Usage 2
To catch if the username entered is not a github user
use Ibonly\GithubStatusEvangelist\EvangelistStatus;
use Ibonly\GithubStatusEvangelist\NullUserException;
Note that $username is the GitHub username of the individual.
try {
$status = new EvangelistStatus($username);
} catch (NullUserException $e){
echo $e->errorMessage();
}
$status->getStatus();
Testing
$ vendor/bin/phpunit test
Contributing
To contribute and extend the scope of this package, Please check out CONTRIBUTING file for detailed contribution guidelines.
Credits
Open-source-Evangelist is created and maintained by Ibraheem ADENIYI.
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-06