From 035dbcc8ff1d3c3f0c36b6b1b2a2b68d5797ac36 Mon Sep 17 00:00:00 2001 From: myqlarson Date: Wed, 24 Apr 2013 16:29:10 +1200 Subject: [PATCH] Fixes #1822 Update 02-libraries.md Assuming #1822 is correct, this should fix it. --- doc/02-libraries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/02-libraries.md b/doc/02-libraries.md index 6b881d99f..94b6e9272 100644 --- a/doc/02-libraries.md +++ b/doc/02-libraries.md @@ -122,7 +122,7 @@ the `.gitignore`. Once you have a vcs repository (version control system, e.g. git) containing a `composer.json` file, your library is already composer-installable. In this example we will publish the `acme/hello-world` library on GitHub under -`github.com/composer/hello-world`. +`github.com/acme/hello-world`. Now, To test installing the `acme/hello-world` package, we create a new project locally. We will call it `acme/blog`. This blog will depend on @@ -150,7 +150,7 @@ We do this by adding a package repository specification to the blog's "repositories": [ { "type": "vcs", - "url": "https://github.com/composer/hello-world" + "url": "https://github.com/acme/hello-world" } ], "require": {