mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-13 18:07:05 +00:00
08a39470c0
Also added "composer fix" command. Change-Id: I8da17b799929b7caed0e0a89014c6ab15c39f0c6
34 lines
694 B
JSON
34 lines
694 B
JSON
{
|
|
"name": "mediawiki/scribunto",
|
|
"type": "mediawiki-extension",
|
|
"description": "Framework for embedding scripting languages into MediaWiki pages",
|
|
"homepage": "https://www.mediawiki.org/wiki/Extension:Scribunto",
|
|
"license": "GPL-2.0+",
|
|
"authors": [
|
|
{
|
|
"name": "Victor Vasiliev",
|
|
"email": "vasilvv@gmail.com"
|
|
},
|
|
{
|
|
"name": "Tim Starling",
|
|
"email": "tstarling@users.mediawiki.org"
|
|
}
|
|
],
|
|
"require": {
|
|
"composer/installers": ">=1.0.1"
|
|
},
|
|
"require-dev": {
|
|
"jakub-onderka/php-parallel-lint": "0.9.2",
|
|
"mediawiki/mediawiki-codesniffer": "0.7.2"
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"parallel-lint . --exclude vendor",
|
|
"phpcs -p -s"
|
|
],
|
|
"fix": [
|
|
"phpcbf"
|
|
]
|
|
}
|
|
}
|