-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
42 lines (42 loc) · 1.03 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
{
"name": "mediawiki/mermaid",
"type": "mediawiki-extension",
"description": "Provides a parser function to generate diagrams and charts with the help of the mermaid script language",
"keywords": [
"mediawiki",
"mermaid",
"parser function"
],
"homepage": "https://github.com/SemanticMediaWiki/Mermaid",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "James Hong Kong",
"role": "Developer"
},
{
"name": "Tyler Gibson",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"composer/installers": "1.*,>=1.0.1"
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts":{
"test": [
"@phpunit"
],
"test-coverage": [
"@phpunit-coverage"
],
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"phpunit-coverage": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist --testdox --coverage-text --coverage-html coverage/php --coverage-clover coverage/php/coverage.xml",
"phpdbg": "phpdbg -qrr ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
}
}