summaryrefslogtreecommitdiff
path: root/composer.json
blob: b8402848e42a8a53faf0abd34f9b624fd909e100 (plain)
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
{
	"name": "fisharebest/webtrees",
	"description": "webtrees online genealogy",
	"keywords": ["webtrees", "genealogy"],
	"license": "GPL-3.0",
	"autoload": {
		"psr-4": {
			"Fisharebest\\Webtrees\\": "app/"
		}
	},
	"config": {
		"platform": {
			"php" : "5.6"
		}
	},
	"require": {
		"ext-gd": "*",
		"ext-iconv": "*",
		"ext-mbstring": "*",
		"ext-pcre": "*",
		"ext-pdo": "*",
		"ext-pdo_mysql": "*",
		"ext-session": "*",
		"ext-simplexml": "*",
		"ext-xml": "*",
		"ezyang/htmlpurifier": "4.*",
		"fisharebest/algorithm": "1.*",
		"fisharebest/ext-calendar": "2.*",
		"fisharebest/localization": "1.*",
		"michelf/php-markdown": "1.*",
		"pclzip/pclzip": "2.*",
		"ramsey/uuid": "2.*",
		"swiftmailer/swiftmailer": "~5.0",
		"tecnickcom/tcpdf": "6.*",
		"league/glide": "^1.2"
	},
	"require-dev": {
		"friendsofphp/php-cs-fixer": "*",
		"mockery/mockery": "*",
		"phpdocumentor/phpdocumentor": "*",
		"phpunit/phpunit": "*",
		"satooshi/php-coveralls": "~1.0"
	},
	"extra": {
		"branch-alias": {
			"dev-master": "1.8-dev"
		}
	}
}