From 28c2e986ae5e5ac0fd43bde3d7a057b7c8771b77 Mon Sep 17 00:00:00 2001 From: Vivek Ghaisas Date: Thu, 25 Jun 2015 11:46:02 +0300 Subject: [PATCH] Don't autoload Vector.php using composer.json As per T467, the RfC for extension management with composer has been declined. Hence, we can get rid of Vector.php from composer.json, thus also solving the issue of `composer test` die()ing because it loads Vector.php and wfLoadSkin is not found. Any users who are currently installing the skin via composer will need to add "wfLoadSkin( 'Vector' )" to their LocalSettings.php. Bug: T103800 Change-Id: Icd8acc34f52be9c3c0f564744d2eb2aae7f34398 --- composer.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/composer.json b/composer.json index c5475baf..b654fd3d 100644 --- a/composer.json +++ b/composer.json @@ -27,11 +27,6 @@ "php" : ">=5.3.2", "composer/installers": ">1.0.12" }, - "autoload" : { - "files": [ - "Vector.php" - ] - }, "extra" : { "branch-alias": { "dev-master": "1.x-dev"