umpirsky/oregon

Statistics library for open source organizations.

dev-master / 0.1.x-dev 2016-03-12 16:50 UTC

This package is not auto-updated.

Last update: 2024-07-20 13:26:41 UTC


README

symfony upgrade fixertwig gettext extractorwisdomcentipedepermissions handlerextraloadgravatarlocurrocountry listtransliterator

Oregon Build Status

Statistics library for open source organizations.

It can fetch and aggregate various information about organization from GitHub and Packagist.

Usage

Get contributors:

<?php

(new Oregon\Oregon('Sylius'))->getContributors();

This will merge GitHub contributors for all repositories in Sylius organization sorted by number of contributions.

Get downlod count:

<?php

(new Oregon\Oregon('Sylius'))->getDownloads();

This will sum download count for all packages from Sylius vendor fetched from Packagist.

See more examples.

Installation

The recommended way to install Oregon is through composer:

{
    "require": {
        "umpirsky/oregon": "0.1.*"
    }
}