forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.26 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
{
"name": "fisharebest/webtrees",
"description": "webtrees online genealogy",
"keywords": ["webtrees", "genealogy"],
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"Fisharebest\\Webtrees\\": "app/"
},
"files": [
"app/Helpers/functions.php"
]
},
"config": {
"platform": {
"php" : "5.6"
},
"sort-packages": true
},
"require": {
"ext-gd": "*",
"ext-iconv": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-session": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"fisharebest/algorithm": "~1.3",
"fisharebest/ext-calendar": "~2.3",
"fisharebest/localization": "~1.10",
"guzzlehttp/guzzle": "~6.0",
"league/commonmark": "0.15.3",
"league/flysystem": "~1.0",
"league/flysystem-ziparchive": "~1.0",
"league/glide": "~1.2",
"ramsey/uuid": "~3.6",
"swiftmailer/swiftmailer": "~5.0",
"symfony/http-foundation": "~3.2",
"symfony/polyfill-mbstring": "~1.4",
"symfony/polyfill-php71": "~1.4",
"symfony/polyfill-php72": "~1.4",
"tecnickcom/tcpdf": "~6.2",
"webuni/commonmark-table-extension": "~0.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"mockery/mockery": "*",
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "*"
},
"extra": {
"branch-alias": {
"dev-master": "1.8-dev"
}
}
}