Add Content-Length header to thumb.php redirects
[lhc/web/wiklou.git] / composer.json
1 {
2 "name": "mediawiki/core",
3 "description": "Free software wiki application developed by the Wikimedia Foundation and others",
4 "keywords": ["mediawiki", "wiki"],
5 "homepage": "https://www.mediawiki.org/",
6 "authors": [
7 {
8 "name": "MediaWiki Community",
9 "homepage": "https://www.mediawiki.org/wiki/Special:Version/Credits"
10 }
11 ],
12 "license": "GPL-2.0+",
13 "support": {
14 "issues": "https://bugs.mediawiki.org/",
15 "irc": "irc://irc.freenode.net/mediawiki",
16 "wiki": "https://www.mediawiki.org/"
17 },
18 "require": {
19 "cssjanus/cssjanus": "1.1.1",
20 "ext-iconv": "*",
21 "leafo/lessphp": "0.5.0",
22 "liuggio/statsd-php-client": "1.0.16",
23 "mediawiki/at-ease": "1.0.0",
24 "oojs/oojs-ui": "0.12.2",
25 "php": ">=5.3.3",
26 "psr/log": "1.0.0",
27 "wikimedia/cdb": "1.0.1",
28 "wikimedia/assert": "0.2.2",
29 "wikimedia/composer-merge-plugin": "1.2.1",
30 "wikimedia/utfnormal": "1.0.2",
31 "zordius/lightncandy": "0.21"
32 },
33 "require-dev": {
34 "jakub-onderka/php-parallel-lint": "0.9",
35 "justinrainbow/json-schema": "~1.3",
36 "phpunit/phpunit": "3.7.37",
37 "mediawiki/mediawiki-codesniffer": "0.3.0"
38 },
39 "suggest": {
40 "ext-fileinfo": "*",
41 "ext-intl": "*",
42 "ext-mbstring": "*",
43 "ext-wikidiff2": "*",
44 "ext-apc": "*",
45 "monolog/monolog": "*"
46 },
47 "autoload": {
48 "psr-0": {
49 "ComposerHookHandler": "includes/composer"
50 }
51 },
52 "scripts": {
53 "lint": "parallel-lint --exclude vendor",
54 "phpcs": "phpcs -p $PHPCS_ARGS",
55 "test": [
56 "composer lint",
57 "composer phpcs"
58 ],
59 "pre-update-cmd": "ComposerHookHandler::onPreUpdate",
60 "pre-install-cmd": "ComposerHookHandler::onPreInstall"
61 },
62 "config": {
63 "classmap-authoritative": true,
64 "prepend-autoloader": false,
65 "optimize-autoloader": true
66 },
67 "extra": {
68 "merge-plugin": {
69 "include": [
70 "composer.local.json"
71 ]
72 }
73 }
74 }