File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 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:
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
1942FOSMessageBundle requires that your user class implement ` ParticipantInterface ` . This
You can’t perform that action at this time.
0 commit comments