-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
101 lines (101 loc) · 2.74 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "jeblad/bcmath",
"type": "mediawiki-extension",
"description": "Provides basic arbitrary-precision arithmetic for Lua modules in Mediawiki.",
"keywords": [
"wiki",
"MediaWiki",
"extension",
"bignum",
"bcmath"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:BCmath",
"license": "GPL-2.0",
"authors": [
{
"name": "John Erling Blad",
"email": "jeblad@gmail.com",
"role": "Developer"
}
],
"support": {
"wiki": "https://www.mediawiki.org/wiki/Extension:BCmath",
"forum": "https://www.mediawiki.org/wiki/Extension_talk:BCmath",
"source": "https://github.com/jeblad/BCmath",
"issues": "https://github.com/jeblad/BCmath/issues",
"irc": "irc://irc.freenode.org/mediawiki"
},
"config": {
"prepend-autoloader": false,
"optimize-autoloader": true
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "1.0.0",
"mediawiki/mediawiki-codesniffer": "26.0.0",
"phpunit/phpunit": "6.*",
"phpmd/phpmd" : "@stable",
"squizlabs/php_codesniffer": "3.*",
"slevomat/coding-standard": "~4.5",
"phpspec/prophecy": "~1.0",
"jakub-onderka/php-console-highlighter": "@stable",
"mediawiki/minus-x": "0.3.1",
"mediawiki/mediawiki-phan-config": "0.6.1",
"brianium/paratest": "^1.0"
},
"scripts": {
"fix": [
"phpcbf",
"minus-x fix ."
],
"ldoc": [
"ldoc includes/LuaLibrary/lua/non-pure/BCmath.lua --testing --unqualified --template ./ --config ./config.ld"
],
"minify": [
"find modules/images -type d -path minified -prune -o -type d -execdir svgo --pretty --indent=2 -i . -o ./minified \\;"
],
"unit": [
"php ../../tests/phpunit/phpunit.php --wiki wiki --exclude-group LuaStandalone,Broken,Destructive,Database,Stub --group BCmath"
],
"unit-both": [
"php ../../tests/phpunit/phpunit.php --wiki wiki --exclude-group Broken,Destructive,Database,Stub --group BCmath"
],
"unit-lua": [
"php ../../tests/phpunit/phpunit.php --wiki wiki --exclude-group Broken,Destructive,Database,Stub --group Lua"
],
"codesize": [
"phpmd ./includes/ text codesize",
"phpmd ./tests/ text codesize"
],
"mess": [
"phpmd ./includes/ text phpmd.xml",
"phpmd ./tests/ text phpmd.xml"
],
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s",
"minus-x check ."
],
"export": [
"php ../../maintenance/dumpBackup.php --current --pagelist=PAGELIST --output=file:pages.xml"
],
"import": [
"php ../../maintenance/importDump.php pages.xml"
]
},
"require": {
"php": ">=5.6",
"composer/installers": "~1.0",
"ext-date": "*",
"ext-xml": "*",
"ext-Phar": "*",
"phpseclib/bcmath_compat": "^1.0"
},
"suggest": {
"ext-apc": "Local data and opcode cache",
"ext-tidy": "*",
"ext-xdebug": "*"
},
"extra": {
"phan-taint-check-plugin": "2.0.1"
}
}