Add PEAR's Mail and Mail_Mime to composer.json's suggestions
[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.4",
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 "wikimedia/wrappedstring": "2.0.0",
32 "zordius/lightncandy": "0.21"
33 },
34 "require-dev": {
35 "jakub-onderka/php-parallel-lint": "0.9",
36 "justinrainbow/json-schema": "~1.3",
37 "phpunit/phpunit": "3.7.37",
38 "mediawiki/mediawiki-codesniffer": "0.3.0"
39 },
40 "suggest": {
41 "ext-fileinfo": "*",
42 "ext-intl": "*",
43 "ext-mbstring": "*",
44 "ext-wikidiff2": "*",
45 "ext-apc": "*",
46 "monolog/monolog": "*",
47 "pear/mail": "*",
48 "pear/mail_mime": "*"
49 },
50 "autoload": {
51 "psr-0": {
52 "ComposerHookHandler": "includes/composer"
53 }
54 },
55 "scripts": {
56 "lint": "parallel-lint --exclude vendor",
57 "phpcs": "phpcs -p $PHPCS_ARGS",
58 "test": [
59 "composer lint",
60 "composer phpcs"
61 ],
62 "pre-update-cmd": "ComposerHookHandler::onPreUpdate",
63 "pre-install-cmd": "ComposerHookHandler::onPreInstall"
64 },
65 "config": {
66 "prepend-autoloader": false,
67 "optimize-autoloader": true
68 },
69 "extra": {
70 "merge-plugin": {
71 "include": [
72 "composer.local.json"
73 ]
74 }
75 }
76 }