-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
69 lines (69 loc) · 1.59 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
68
69
{
"name": "mediawiki/bootstrap",
"type": "mediawiki-extension",
"description": "Provides the Bootstrap 4 web front-end framework to MediaWiki skins and extensions",
"keywords": [
"wiki",
"MediaWiki",
"extension",
"Twitter",
"Bootstrap"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:Bootstrap",
"readme": "README.md",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Stephan Gambke",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Professional.Wiki",
"email": "[email protected]",
"homepage": "https://professional.wiki",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/cmln/mw-bootstrap/issues",
"forum": "https://www.mediawiki.org/wiki/Extension_talk:Bootstrap",
"wiki": "https://www.mediawiki.org/wiki/Extension:Bootstrap",
"irc": "irc://libera.chat:6667/mediawiki",
"source": "https://github.com/cmln/mw-bootstrap",
"docs": "https://github.com/cmln/mw-bootstrap/tree/latest/docs",
"rss": "https://github.com/cmln/mw-bootstrap/releases.atom"
},
"require": {
"php": ">=8.0",
"composer/installers": "^2|^1.0.1",
"mediawiki/scss": "~4.0"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "45.0.0",
"mediawiki/mediawiki-phan-config": "0.14.0",
"php": ">=8.0"
},
"autoload": {
"psr-4": {
"Bootstrap\\": "src/",
"Bootstrap\\Tests\\" : "tests/phpunit/"
}
},
"scripts": {
"test": [
"phpcs -p -s"
],
"fix": "phpcbf"
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}