-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 1.76 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
{
"name": "mediawiki/semantic-notifications",
"type": "mediawiki-extension",
"description": "A Semantic Mediawiki extension that notifies about changes to structured data using the Echo(Notifications) extension.",
"keywords": [
"smw",
"semantic mediawiki",
"wiki",
"mediawiki",
"Echo"
],
"homepage": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Notifications",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "mwjames",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/SemanticMediaWiki/SemanticNotifications/issues",
"irc": "irc://irc.libera.chat/semantic-mediawiki",
"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/SemanticNotifications"
},
"require": {
"php": ">=5.5.0",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/semantic-media-wiki": "~3.0"
},
"require-dev": {
"mediawiki/semantic-media-wiki": "@dev",
"squizlabs/php_codesniffer": "~2.1",
"phpmd/phpmd": "~2.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"files" : [
"SemanticNotifications.php"
],
"psr-4": {
"SMW\\Notifications\\": "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",
"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"
]
}
}