forked from ProfessionalWiki/chameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.38 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
{
"name": "mediawiki/chameleon-skin",
"type": "mediawiki-skin",
"description": "A highly flexible MediaWiki skin using Bootstrap 4",
"keywords": [
"wiki",
"MediaWiki",
"skin",
"Twitter",
"Bootstrap"
],
"homepage" : "https://github.com/ProfessionalWiki/chameleon",
"license" : "GPL-3.0-or-later",
"authors" : [
{
"name": "Stephan Gambke",
"email": "[email protected]",
"role": "Creator"
},
{
"name": "Professional.Wiki",
"email": "[email protected]",
"homepage": "https://professional.wiki",
"role": "Maintainer"
}
],
"support": {
"docs": "https://github.com/ProfessionalWiki/chameleon",
"source": "https://github.com/ProfessionalWiki/chameleon.git",
"issues": "https://github.com/ProfessionalWiki/chameleon/issues",
"irc": "irc://libera.chat:6667/mediawiki"
},
"require": {
"php": ">=7.4.3",
"ext-dom": "*",
"ext-filter": "*",
"composer/installers": "^2|^1.0.12",
"mediawiki/bootstrap": "^4.5",
"jeroen/file-fetcher": "^6|^5|^4.4"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "39.0.0",
"mediawiki/mediawiki-phan-config": "0.11.1"
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"scripts": {
"test": [
"phpcs -p -s"
],
"fix": "phpcbf",
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"phpunit-test": [
"@phpunit"
],
"build": "npm run build"
}
}