forked from ProfessionalWiki/chameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.24 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 Twitter Bootstrap 3",
"keywords" : [
"wiki",
"MediaWiki",
"skin",
"Twitter",
"Bootstrap"
],
"homepage" : "https://github.com/cmln/chameleon",
"license" : "GPL-3.0+",
"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" : ">=5.3.2",
"ext-dom" : "*",
"ext-filter" : "*",
"composer/installers": ">1.0.12",
"mediawiki/bootstrap": "~1.1"
},
"autoload" : {
"files": [ "Chameleon.php", "src/SkinChameleon.php" ],
"psr-4": {
"Skins\\Chameleon\\Tests\\" : "tests/phpunit",
"Skins\\Chameleon\\" : "src"
}
},
"extra" : {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"test": [
"npm test",
"@phpunit"
],
"build": "npm run build"
}
}