forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 768 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 768 Bytes
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
{
"autoload": {
"psr-0": {
"WT_": "library/WT/"
},
"psr-4": {
"WT\\": "library/WT/"
}
},
"config": {
"preferred-install": "dist",
"vendor-dir": "library"
},
"description": "webtrees online genealogy",
"keywords": ["webtrees", "genealogy"],
"license": "GPL-2.0+",
"minimum-stability": "stable",
"name": "fisharebest/webtrees",
"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"
]
}
}