-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.75 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.75 KB
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
{
"name": "mediawiki/bootstrap-components",
"type": "mediawiki-extension",
"description": "A Mediawiki extension to allow for the usage of special bootstrap components inside wiki markup.",
"keywords": [
"wiki",
"mediawiki",
"extension",
"Bootstrap",
"Twitter",
"components"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:BootstrapComponents",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Tobias Oetterer",
"role": "Creator"
}
],
"support": {
"wiki": "https://www.mediawiki.org/wiki/Extension:BootstrapComponents",
"issues": "https://github.com/oetterer/BootstrapComponents/issues",
"forum": "https://www.mediawiki.org/wiki/Extension_talk:BootstrapComponents",
"source": "https://github.com/oetterer/BootstrapComponents"
},
"require": {
"php": ">=8.0",
"composer/installers": "^2|^1.0.1",
"mediawiki/bootstrap": "^5.0"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "46.0.0",
"mediawiki/mediawiki-phan-config": "0.15.1",
"phpmd/phpmd": "~2.1",
"php": ">=8.0"
},
"suggest": {
"mediawiki/scribunto": "Framework for embedding scripting languages into MediaWiki pages"
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist --do-not-cache-result",
"unit": "composer phpunit -- --testsuite bootstrap-components-unit",
"test": "composer unit",
"integration": "composer phpunit -- --testsuite bootstrap-components-integration",
"cs": [
"vendor/bin/phpcs src/* tests/* --standard=phpcs.xml --extensions=php -sp",
"vendor/bin/phpmd src/,tests/ text phpmd.xml"
],
"ci": [
"composer validate --no-interaction",
"composer phpunit",
"composer cs"
]
}
}