diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-19 16:31:35 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-19 16:31:35 -0700 |
commit | c79c1b391331ab7c8c0f01265a627ffae23d54e2 (patch) | |
tree | 66d988e77e1af2b8695a9726a76fc7d5743a69a6 /composer.json | |
parent | 716a83d1f77e2d6f26b25ab03ffe130c11ef7feb (diff) | |
parent | b926a4c67e4d7dcba01df91dddcc047abde246bb (diff) | |
download | volse-hubzilla-c79c1b391331ab7c8c0f01265a627ffae23d54e2.tar.gz volse-hubzilla-c79c1b391331ab7c8c0f01265a627ffae23d54e2.tar.bz2 volse-hubzilla-c79c1b391331ab7c8c0f01265a627ffae23d54e2.zip |
Merge branch 'dev' into pdo
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 000000000..abf583875 --- /dev/null +++ b/composer.json @@ -0,0 +1,55 @@ +{ + "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" + }, + "require-dev" : { + "php" : ">=5.6", + "phpunit/phpunit" : "^5.6", + "behat/behat" : "@stable", + "behat/mink-extension": "@stable", + "behat/mink-goutte-driver": "@stable" + }, + "autoload" : { + "psr-4" : { + "Hubzilla\\" : "include/", + "Zotlabs\\" : "Zotlabs/" + } + }, + "autoload-dev" : { + "psr-4" : { + "Zotlabs\\Tests\\Unit\\" : "tests/unit" + } + }, + "minimum-stability" : "stable", + "config" : { + "notify-on-install" : false + } +}
\ No newline at end of file |