From dd8dfe80152c21b170c83a131d537d384073c79e Mon Sep 17 00:00:00 2001 From: Bryan Davis Date: Thu, 20 Mar 2014 22:10:46 -0600 Subject: [PATCH] Add Composer managed libraries This is the initial step towards implementing the Structured logging RFC [0]. The Psr\Log library is declared as a requirement in the composer.json file and Monolog is suggested as a package that can enhance MediaWiki. To use this in a local checkout: * Install composer [1] * `composer update` * `composer require monolog/monolog 1.9.*` * `composer dump-autoload --optimize` * `git update-index --assume-unchanged composer.json` Additional work will be needed to provide both the Psr\Log and Monolog libraries available for deployment to the Wikimedia Foundation servers. The Psr\Log library will also need to be packaged in the release tarballs. [0]: https://www.mediawiki.org/wiki/Requests_for_comment/Structured_logging [1]: https://getcomposer.org/doc/00-intro.md#installation-nix See also: I1431b24 (Monolithic implementation) Change-Id: Ie667944416187cfd2ae6016c9e2fa28f4204bcd7 --- composer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index ded3365261..8389f0070f 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,8 @@ "wiki": "https://www.mediawiki.org/" }, "require": { - "php": ">=5.3.2" + "php": ">=5.3.2", + "psr/log": "1.0.0" }, "require-dev": { "phpunit/phpunit": "*" @@ -25,6 +26,7 @@ "ext-fileinfo": "*", "ext-mbstring": "*", "ext-wikidiff2": "*", - "ext-apc": "*" + "ext-apc": "*", + "monolog/monolog": "*" } } -- 2.20.1