-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
67 lines (67 loc) · 1.47 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
{
"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": ">=8.0.0",
"ext-dom": "*",
"ext-filter": "*",
"composer/installers": "^2|^1.0.12",
"mediawiki/bootstrap": "^5.0",
"jeroen/file-fetcher": "^6",
"psr/http-message": "^1"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "45.0.0",
"mediawiki/mediawiki-phan-config": "0.14.0"
},
"extra": {
"branch-alias": {
"dev-master": "5.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"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}