diff --git a/README.md b/README.md index c10a56cd..fe773fd4 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,6 @@ If using versions older than Symfony3.4 (LTS), make sure to use version 1.3 of t https://github.com/FriendsOfSymfony/FOSMessageBundle/tree/v1.3.0 -When using composer, tag it as such but otherwise install as per the 1.3 docs: - -```bash -composer require friendsofsymfony/message-bundle:1.3.0 -``` - License ------- diff --git a/Resources/doc/01-installation.md b/Resources/doc/01-installation.md index 315e34be..28ff3b11 100644 --- a/Resources/doc/01-installation.md +++ b/Resources/doc/01-installation.md @@ -10,31 +10,16 @@ Setting up FOSMessageBundle The first step is to tell composer that you want to download FOSMessageBundle which can be achieved by typing the following at the command prompt: -```bash -$ 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) +#### Current -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" - } -] +```bash +composer require friendsofsymfony/message-bundle ``` -Then type the following in the command prompt (instead of the above step). +#### v1.3 (Legacy: Symfony 2, or <=3.3) ```bash -$ composer require friendsofsymfony/message-bundle:^2.0 +composer require friendsofsymfony/message-bundle:1.3.0 ``` ### Step 2 - Setting up your user class diff --git a/composer.json b/composer.json index ff33a8d2..19d3eb4c 100644 --- a/composer.json +++ b/composer.json @@ -45,7 +45,7 @@ }, "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.0.1-dev" } } }