aboutsummaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 09e6d783e439a896068c400a13bbad4a61be76fc (plain) (blame)
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
58
59
60
{
	"name" : "zotlabs/hubzilla",
	"type" : "application",
	"description" : "Hubzilla is a powerful platform for creating interconnected websites featuring a decentralized identity, communications, and permissions framework built using common webserver technology.",
	"keywords" : [
		"CMS",
		"identity",
		"decentralisation",
		"permission",
		"SSO",
		"ZOT"
	],
	"homepage" : "http://github.com/redmatrix/hubzilla",
	"license" : "MIT",
	"authors" : [{
			"name" : "Mike Macgirvin",
			"role" : "founder"
		}
	],
	"support" : {
		"issues" : "https://github.com/redmatrix/hubzilla/issues",
		"source" : "https://github.com/redmatrix/hubzilla"
	},
	"require" : {
		"php" : ">=5.5",
		"ext-curl" : "*",
		"ext-gd" : "*",
		"ext-mbstring" : "*",
		"ext-xml" : "*",
		"ext-openssl" : "*",
		"sabre/dav" : "~3.2",
		"michelf/php-markdown" : "^1.7",
		"pixel418/markdownify": "^2.2",
		"bshaffer/oauth2-server-php": "^1.9",
		"ezyang/htmlpurifier": "^4.9"
	},
	"require-dev" : {
		"php" : ">=7.0",
		"phpunit/phpunit" : "^6.0",
		"behat/behat" : "@stable",
		"behat/mink-extension": "@stable",
		"behat/mink-goutte-driver": "@stable",
		"php-mock/php-mock-phpunit": "^2.0"
	},
	"autoload" : {
		"psr-4" : {
			"Hubzilla\\" : "include/",
			"Zotlabs\\" : "Zotlabs/"
		}
	},
	"autoload-dev" : {
		"psr-4" : {
			"Zotlabs\\Tests\\Unit\\" : "tests/unit"
		}
	},
	"minimum-stability" : "stable",
	"config" : {
		"notify-on-install" : false
	}
}