Move unit tests to tests/unit/. Get the old still working UnitTests into a working state again. Updated composer.json with required-dev packages. Create a new folder tests/acceptance for Behat functional/acceptance testing. Add a first Feature draft of a Behat functional test for local login.
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"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
|
|
}
|
|
} |