-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
57 lines (57 loc) · 1.52 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
{
"name": "mediawiki/semantic-breadcrumb-links",
"type": "mediawiki-extension",
"description": "An extension to Semantic MediaWiki allowing to build breadcrumb links from an attributive property filter",
"keywords": [
"smw",
"semantic mediawiki",
"wiki",
"mediawiki",
"breadcrumb"
],
"homepage": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Breadcrumb_Links",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "James Hong Kong",
"homepage": "https://www.semantic-mediawiki.org/wiki/User:MWJames",
"role": "Developer"
}
],
"support": {
"email": "semediawiki-user@lists.sourceforge.net",
"issues": "https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks/issues",
"forum": "https://www.semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
"wiki": "https://www.semantic-mediawiki.org/wiki/",
"source": "https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks"
},
"require": {
"php": ">=5.6",
"composer/installers": "1.*,>=1.0.12",
"mediawiki/semantic-media-wiki": "~2.5|~3.0|~4.0",
"onoi/shared-resources":"~0.2"
},
"require-dev": {
"mediawiki/semantic-media-wiki": "@dev"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"autoload": {
"files" : [
"SemanticBreadcrumbLinks.php"
],
"psr-4": {
"SBL\\": "src/"
}
},
"config": {
"process-timeout": 0
},
"scripts":{
"test": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
}
}