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
|
{
"name": "fisharebest/webtrees",
"description": "webtrees online genealogy",
"keywords": ["webtrees", "genealogy"],
"license": "GPL-3.0+",
"autoload": {
"files": [
"includes/functions/functions.php",
"includes/functions/functions_charts.php",
"includes/functions/functions_date.php",
"includes/functions/functions_db.php",
"includes/functions/functions_edit.php",
"includes/functions/functions_export.php",
"includes/functions/functions_import.php",
"includes/functions/functions_mediadb.php",
"includes/functions/functions_print.php",
"includes/functions/functions_print_facts.php",
"includes/functions/functions_print_lists.php",
"includes/functions/functions_rtl.php"
],
"psr-4": {
"Webtrees\\": ["app/", "modules_v3/"]
}
},
"require": {
"bombayworks/zendframework1": "*",
"ezyang/htmlpurifier": "*",
"fisharebest/ext-calendar": "*",
"ircmaxell/password-compat": "*",
"michelf/php-markdown": "*",
"patchwork/utf8": "*",
"tecnick.com/tcpdf": "*",
"rhumsaa/uuid": "*"
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload --optimize"
],
"post-update-cmd": [
"composer dump-autoload --optimize"
]
}
}
|