Skip to content

Commit

Permalink
Add composer installation instructions to each package. Closes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
dongilbert committed May 15, 2013
1 parent 20ea736 commit 163fa2e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Expand Up @@ -87,3 +87,24 @@ $github->gists->create(array('issue_summary.txt' => $summary));
The following resources contain more information: [Joomla! API
Reference](http://api.joomla.org), [Github API
Reference](http://developer.github.com).


## Installation via Composer

Add `"joomla/github": "dev-master"` to the require block in your composer.json, make sure you have `"minimum-stability": "dev"` and then run `composer install`.

```json
{
"require": {
"joomla/github": "dev-master"
},
"minimum-stability": "dev"
}
```

Alternatively, you can simply run the following from the command line:

```sh
composer init --stability="dev"
composer require joomla/github "dev-master"
```

0 comments on commit 163fa2e

Please sign in to comment.