forked from SemanticMediaWiki/SemanticMediaWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
99 lines (99 loc) · 2.48 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "mediawiki/semantic-media-wiki",
"type": "mediawiki-extension",
"description": "MediaWiki extension that lets you store and query structured data within wiki pages",
"keywords": [
"SMW",
"Semantic MediaWiki",
"Wiki",
"MediaWiki"
],
"homepage": "https://semantic-mediawiki.org/wiki/",
"license": "GPL-2.0+",
"authors": [
{
"name": "Markus Krötzsch",
"homepage": "http://korrekt.org",
"role": "Original author"
},
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "http://jeroendedauw.com",
"role": "Core developer"
},
{
"name": "James Hong Kong",
"homepage": "https://semantic-mediawiki.org/wiki/User:MWJames",
"role": "Core developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues",
"irc": "irc://irc.freenode.net/semantic-mediawiki",
"forum": "https://semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
"wiki": "https://semantic-mediawiki.org/wiki/",
"source": "https://github.com/SemanticMediaWiki/SemanticMediaWiki"
},
"require": {
"php": ">=5.3.0",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/validator": "~2.0,>=2.0.4",
"serialization/serialization": "~3.2",
"onoi/message-reporter": "~1.0",
"onoi/cache": "~1.0",
"doctrine/dbal": "~2.5"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.1",
"phpmd/phpmd": "~2.1"
},
"replace": {
"mediawiki/semantic-mediawiki": "*"
},
"suggest": {
"mediawiki/semantic-result-formats": "Additional result formats for SMW queries",
"mediawiki/semantic-forms": "Easy creation of forms to add semantic data"
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
},
"autoload": {
"psr-4": {
"SMW\\": "src/"
},
"files" : [
"SemanticMediaWiki.php"
],
"classmap": [
"SemanticMediaWiki.hooks.php",
"includes/",
"languages/SMW_Language.php"
]
},
"config": {
"process-timeout": 0
},
"scripts": {
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"unit": [
"composer dump-autoload",
"php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist --testsuite=semantic-mediawiki-unit"
],
"cs-standalone": [
"composer validate --no-interaction",
"vendor/bin/phpcs src/* --standard=phpcs.xml --extensions=php -sp"
],
"cs": [
"composer cs-standalone",
"vendor/bin/phpmd src/ text phpmd.xml"
],
"ci": [
"composer phpunit",
"composer cs"
]
}
}