-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.36 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
{
"name": "mediawiki/semantic-signup",
"type": "mediawiki-extension",
"description": "A Semantic Mediawiki extension to support user registration semantically.",
"keywords": [
"smw",
"semantic mediawiki",
"semantic forms",
"mediawiki",
"account creation",
"structured registration",
"workflow"
],
"homepage": "https://www.semantic-mediawiki.org/wiki/Extension:SemanticSignup",
"license": "GPL-3.0-or-later",
"authors": [],
"support": {
"email": "[email protected]",
"issues": "https://github.com/SemanticMediaWiki/SemanticSignup/issues",
"irc": "irc://irc.freenode.net/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/SemanticSignup"
},
"require": {
"php": ">=5.3.0",
"composer/installers": "1.*,>=1.0.1",
"mediawiki/semantic-media-wiki": "~1.9|~2.0",
"mediawiki/semantic-forms": "~2.8|~3.0"
},
"require-dev": {
"mediawiki/semantic-media-wiki": "@dev"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"autoload": {
"files" : [
"SemanticSignup.php"
],
"psr-4": {
"SES\\": "src/"
}
},
"config": {
"process-timeout": 0
},
"scripts":{
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
}
}