-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathcomposer.json
54 lines (54 loc) · 1.18 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
{
"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/cmln/chameleon",
"license" : "GPL-3.0-or-later",
"authors" : [
{
"name": "Stephan Gambke",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"docs": "https://github.com/cmln/chameleon",
"source": "https://github.com/cmln/chameleon.git",
"issues": "https://github.com/cmln/chameleon/issues",
"irc": "irc://irc.freenode.org/mediawiki"
},
"require": {
"php": ">=7.0",
"ext-dom": "*",
"ext-filter": "*",
"composer/installers": "^1.0.12",
"mediawiki/mediawiki": ">=1.31",
"mediawiki/mw-extension-registry-helper": "^1.0",
"mediawiki/bootstrap": "^4.0"
},
"autoload": {
"psr-4": {
"Skins\\Chameleon\\Tests\\": "tests/phpunit",
"Skins\\Chameleon\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"test": [
"@phpunit"
],
"build": "npm run build"
}
}