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 6a1b4e2 commit 9367e5f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,23 @@ $this->out('<fg=black;bg=cyan>foo</fg=black;bg=cyan>');
// Bold text on a yellow background
$this->out('<bg=yellow;options=bold>foo</bg=yellow;options=bold>');
```

## Installation via Composer

Add `"joomla/application": "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/application": "dev-master"
},
"minimum-stability": "dev"
}
```

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

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

0 comments on commit 9367e5f

Please sign in to comment.