-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.46 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
{
"name": "mediawiki/photoswipe",
"type": "mediawiki-extension",
"description": "This is a MediaWiki extension that adds <code><photoswipe></code> tag to provide a front-end JavaScript image gallery and lightbox using [PhotoSwipe](https://photoswipe.com/)",
"homepage": "https://mediawiki.org/wiki/Extension:PhotoSwipe",
"authors": [
{
"name": "Jason Khanlar"
}
],
"keywords": [
"extension",
"gallery",
"imagegallery",
"MediaWiki",
"photogallery",
"photoswipe",
"wiki"
],
"license": "GPL-3.0-or-later",
"support": {
"forum": "https://www.mediawiki.org/wiki/Extension_talk:Photoswipe",
"issues": "https://phabricator.wikimedia.org/tag/mediawiki-extensions-photoswipe/",
"wiki": "https://www.mediawiki.org/wiki/Extension:Photoswipe"
},
"config": {
"optimize-autoloader": true,
"prepend-autoloader": false,
"allow-plugins": {
"composer/installers": false
}
},
"require": {
"php": ">=7.1",
"composer/installers": ">=1.0.1",
"respect/validation": "^2.2",
"adhocore/json-comment": "^1.1",
"seld/jsonlint": "^1.9"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "38.0.0",
"mediawiki/minus-x": "1.1.1",
"php-parallel-lint/php-console-highlighter": "0.5.0",
"php-parallel-lint/php-parallel-lint": "1.3.1"
},
"scripts": {
"fix": [
"minus-x fix .",
"phpcbf"
],
"phpcs": "phpcs -ps --cache",
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"@phpcs",
"minus-x check ."
]
}
}