forked from oetterer/BootstrapComponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.65 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
{
"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": ">=7.1",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/mw-extension-registry-helper": "^1.0",
"mediawiki/bootstrap": "~4.5"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.1",
"phpmd/phpmd": "~2.1"
},
"suggest": {
"mediawiki/scribunto": "Framework for embedding scripting languages into MediaWiki pages"
},
"config": {
"process-timeout": 0
},
"scripts": {
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"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"
]
}
}