From 2333a0120e0d113235be3831a4da7e5a5024218e Mon Sep 17 00:00:00 2001 From: debugteam Date: Tue, 29 Nov 2016 18:02:38 +0100 Subject: [PATCH] disabling packagist.org did not work While testing i found that "packagist.org": false didn't work to disable packagist. I have read following issue https://github.com/composer/composer/issues/3713 afterwards i've testet "composer config repositories.packagist false" did the review on the composer.json and found that "packagist": false actually disabled packagist. --- doc/05-repositories.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/05-repositories.md b/doc/05-repositories.md index e547b5632..02b61a004 100644 --- a/doc/05-repositories.md +++ b/doc/05-repositories.md @@ -662,7 +662,7 @@ You can disable the default Packagist repository by adding this to your { "repositories": [ { - "packagist.org": false + "packagist": false } ] }