Skip to content

Commit 3ebe49b

Browse files
authored
Merge pull request #341 from FriendsOfSymfony/2.0
added documentation due to packagist issues
2 parents 9c7beb6 + 3edc588 commit 3ebe49b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Diff for: Resources/doc/01-installation.md

+23
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,29 @@ be achieved by typing the following at the command prompt:
1414
$ composer require friendsofsymfony/message-bundle
1515
```
1616

17+
**PLEASE NOTE:** Right now that command will install v1.3.0 due to issues with packagist.
18+
19+
#### v2.0 (temporary fix)
20+
21+
To install the latest version we will have to use github as a VCS provider for composer.
22+
23+
Add the following to your composer.json:
24+
25+
```json
26+
"repositories": [
27+
{
28+
"type": "vcs",
29+
"url": "https://github.com/FriendsOfSymfony/FOSMessageBundle"
30+
}
31+
]
32+
```
33+
34+
Then type the following in the command prompt (instead of the above step).
35+
36+
```bash
37+
$ composer require friendsofsymfony/message-bundle:^2.0
38+
```
39+
1740
### Step 2 - Setting up your user class
1841

1942
FOSMessageBundle requires that your user class implement `ParticipantInterface`. This

0 commit comments

Comments
 (0)