forked from wikimedia/mediawiki-extensions-SemanticGenealogy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.12 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
{
"name": "mediawiki/semantic-genealogy",
"type": "mediawiki-extension",
"description": "The Semantic Genealogy extension provides the ability to view genealogy trees and export GEDCOM files.",
"minimum-stability": "dev",
"keywords": [
"Semantic",
"Genealogy",
"GEDCOM"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:Semantic_Genealogy",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Thomas Pellissier Tanon",
"email": "thomaspt@hotmail.fr",
"role": "Developer"
},
{
"name": "Thibault Taillandier",
"email": "thibault@taillandier.name",
"role": "Developer"
}
],
"require": {
"mediawiki/semantic-media-wiki": ">=1.7"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "1.0.0",
"jakub-onderka/php-console-highlighter": "0.3.2",
"mediawiki/mediawiki-codesniffer": "18.0.0",
"mediawiki/minus-x": "0.3.1"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules --exclude extensions",
"phpcs -p -s",
"minus-x check ."
],
"fix": [
"phpcbf",
"minus-x fix ."
]
},
"autoload": {
"files": [],
"classmap": [
"src/"
]
}
}