diff --git a/README.md b/README.md index f3e816f..5a8a461 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The key features of this bundle is: To download all translations from Loco, simply run: ``` bash -php app/console happyr:translation:download +php bin/console happyr:translation:download ``` When you have added new translations you may submit these to your translation SaaS by the WebProfiler toolbar. @@ -37,7 +37,7 @@ When you want to fetch new translations from your SaaS you should run the synchr keep your current placeholders from missing translations. ``` bash -php app/console happyr:translation:sync +php bin/console happyr:translation:sync ``` ## Install @@ -45,13 +45,12 @@ php app/console happyr:translation:sync Install the bundle with `composer require happyr/translation-bundle` You do also need to choose what library to use when you are sending http messages. Consult the [php-http/client-implementation](https://packagist.org/providers/php-http/client-implementation) virtual package to find adapters to use. For more information about virtual packages please refer to [Httplug](http://docs.httplug.io/en/latest/virtual-package/). Example: -```bash +``` bash php composer.phar require php-http/guzzle6-adapter ``` Enable the bundle in your kernel: -``` -