PHPackages                             cvo-technologies/github - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. cvo-technologies/github

Abandoned → [cvo-technologies/cakephp-github](/?search=cvo-technologies%2Fcakephp-github)Cakephp-plugin[API Development](/categories/api)

cvo-technologies/github
=======================

CakePHP webservice implementation for GitHub

1.1.1(9y ago)81323[1 PRs](https://github.com/CVO-Technologies/cakephp-github/pulls)MITPHP

Since Aug 6Pushed 6y ago2 watchersCompare

[ Source](https://github.com/CVO-Technologies/cakephp-github)[ Packagist](https://packagist.org/packages/cvo-technologies/github)[ RSS](/packages/cvo-technologies-github/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependencies (5)Versions (4)Used By (0)

GitHub plugin
=============

[](#github-plugin)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.txt)[![Build Status](https://camo.githubusercontent.com/d2ab48c94890c0bb2fce2fa3ff31f7babf8931394f76873f972e3f5099252f14/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f43564f2d546563686e6f6c6f676965732f63616b657068702d6769746875622f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/CVO-Technologies/cakephp-github)[![Coverage Status](https://camo.githubusercontent.com/397723e55eed73660dbf15be04c50eb961596e95f1f6dbd24f0b0171ebf95083/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f63766f2d746563686e6f6c6f676965732f63616b657068702d6769746875622e7376673f7374796c653d666c61742d737175617265)](https://codecov.io/github/cvo-technologies/cakephp-github)[![Total Downloads](https://camo.githubusercontent.com/e2c9a021c8390e7b448720cfc8f421b31ab610a630179f3214398d8b02c1d9d0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63766f2d746563686e6f6c6f676965732f63616b657068702d6769746875622e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cvo-technologies/cakephp-github)[![Latest Stable Version](https://camo.githubusercontent.com/a551231f06d441af99f819333e1bd6f914b31819923a7232d1c4fdca75546548/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f63766f2d746563686e6f6c6f676965732f63616b657068702d6769746875622e7376673f7374796c653d666c61742d737175617265266c6162656c3d737461626c65)](https://packagist.org/packages/cvo-technologies/cakephp-github)

Installation
------------

[](#installation)

### Using Composer

[](#using-composer)

Ensure `require` is present in `composer.json`. This will install the plugin into `Plugin/GitHub`:

```
{
    "require": {
        "cvo-technologies/cakephp-github": "~1.1"
    }
}
```

Usage
-----

[](#usage)

If you want to get information about a specific repository

### Webservice config

[](#webservice-config)

Add the following to the `Webservice` section of your application config.

```
        'git_hub' => [
            'className' => 'Muffin\Webservice\Connection',
            'service' => 'CvoTechnologies/GitHub.GitHub',
        ]

```

### Controller

[](#controller)

```
