summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/composer.json
blob: 6681af02756880cfc6623449639101df4c46e5d3 (plain)
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
{
	"require-dev": {
		"mediawiki/lua-sandbox": "3.0.1",
		"mediawiki/mediawiki-codesniffer": "19.4.0",
		"mediawiki/mediawiki-phan-config": "0.2.0",
		"mediawiki/minus-x": "0.3.1",
		"php-parallel-lint/php-console-highlighter": "0.3.2",
		"php-parallel-lint/php-parallel-lint": "1.0.0"
	},
	"repositories": [
		{
			"type": "package",
			"package": {
				"name": "mediawiki/lua-sandbox",
				"version": "3.0.1",
				"source": {
					"url": "https://gerrit.wikimedia.org/r/mediawiki/php/luasandbox.git",
					"type": "git",
					"reference": "tags/3.0.1"
				}
			}
		}
	],
	"scripts": {
		"test": [
			"parallel-lint . --exclude vendor --exclude node_modules",
			"phpcs -p -s",
			"minus-x check ."
		],
		"fix": [
			"minus-x fix .",
			"phpcbf"
		],
		"phan": "phan -d . -p"
	}
}