File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,29 @@ be achieved by typing the following at the command prompt:
14
14
$ composer require friendsofsymfony/message-bundle
15
15
```
16
16
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
+
17
40
### Step 2 - Setting up your user class
18
41
19
42
FOSMessageBundle requires that your user class implement ` ParticipantInterface ` . This
You can’t perform that action at this time.
0 commit comments