summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Mermaid/composer.json
blob: b4f3972f3bf144f8822a3deb25a8eb98f48bff62 (plain)
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
{
	"name": "mediawiki/mermaid",
	"type": "mediawiki-extension",
	"description": "Provides a parser function to generate diagrams and flowcharts 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"
		}
	],
	"require": {
		"php": ">=5.6.0",
		"composer/installers": "1.*,>=1.0.1"
	},
	"extra": {
		"branch-alias": {
			"dev-master": "2.x-dev"
		}
	},
	"autoload": {
		"files" : [
			"Mermaid.php"
		],
		"psr-4": {
			"Mermaid\\": "src/"
		}
	},
	"config": {
		"process-timeout": 0
	},
	"scripts":{
		"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
		"phpdbg": "phpdbg -qrr ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
		"test": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
	}
}