Skip to content

Commit

Permalink
Merge pull request #341 from FriendsOfSymfony/2.0
Browse files Browse the repository at this point in the history
added documentation due to packagist issues
  • Loading branch information
hex333ham committed May 7, 2019
2 parents 9c7beb6 + 3edc588 commit 3ebe49b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Resources/doc/01-installation.md
Expand Up @@ -14,6 +14,29 @@ be achieved by typing the following at the command prompt:
$ composer require friendsofsymfony/message-bundle
```

**PLEASE NOTE:** Right now that command will install v1.3.0 due to issues with packagist.

#### v2.0 (temporary fix)

To install the latest version we will have to use github as a VCS provider for composer.

Add the following to your composer.json:

```json
"repositories": [
{
"type": "vcs",
"url": "https://github.com/FriendsOfSymfony/FOSMessageBundle"
}
]
```

Then type the following in the command prompt (instead of the above step).

```bash
$ composer require friendsofsymfony/message-bundle:^2.0
```

### Step 2 - Setting up your user class

FOSMessageBundle requires that your user class implement `ParticipantInterface`. This
Expand Down

0 comments on commit 3ebe49b

Please sign in to comment.