From: Raphaƫl Gertz <git@rapsys.eu>
Date: Tue, 3 Apr 2018 05:07:40 +0000 (+0200)
Subject: Fix readme
X-Git-Tag: 0.0.2~3
X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/74728125f4c1dbae4c513d01bc83724c18c4108f

Fix readme
---

diff --git a/README.md b/README.md
index ebc9136..ee7b0bb 100644
--- a/README.md
+++ b/README.md
@@ -4,10 +4,38 @@ Installation
 Applications that use Symfony Flex
 ----------------------------------
 
-Open a command console, enter your project directory and execute:
+Add bundle custom repository to your project's `composer.json` file:
+
+```json
+{
+    ...,
+    "repositories": [
+	    {
+		    "type": "package",
+		    "package": {
+			    "name": "rapsys/packbundle",
+			    "version": "dev-master",
+			    "source": {
+				    "type": "git",
+				    "url": "https://git.rapsys.eu/packbundle",
+				    "reference": "master"
+			    },
+			    "autoload": {
+				    "psr-4": {
+					    "Rapsys\\PackBundle\\": ""
+				    }
+			    }
+		    }
+	    }
+    ],
+    ...
+}
+```
+
+Then open a command console, enter your project directory and execute:
 
 ```console
-$ composer require <package-name>
+$ composer require rapsys/packbundle dev-master
 ```
 
 Applications that don't use Symfony Flex
@@ -19,7 +47,7 @@ Open a command console, enter your project directory and execute the
 following command to download the latest stable version of this bundle:
 
 ```console
-$ composer require <package-name>
+$ composer require rapsys/packbundle dev-master
 ```
 
 This command requires you to have Composer installed globally, as explained
@@ -42,7 +70,7 @@ class AppKernel extends Kernel
     {
         $bundles = array(
             // ...
-            new <vendor>\<bundle-name>\<bundle-long-name>(),
+            new Rapsys\PackBundle\RapsysPackBundle(),
         );
 
         // ...