diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-19 09:53:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-19 09:53:59 +1100 |
commit | c2e299440380f04c55dc4cd77ea8e0ac6d09af53 (patch) | |
tree | fe4d742c662b65605d0b6fee8fbf3f5a9e9b66e5 /composer.json | |
parent | 2e1046220a70bb751c39854b881e86feb5d39149 (diff) | |
parent | b92e3ca3ee3f8bed1ff52311d29b4ce1e4297a83 (diff) | |
download | volse-hubzilla-c2e299440380f04c55dc4cd77ea8e0ac6d09af53.tar.gz volse-hubzilla-c2e299440380f04c55dc4cd77ea8e0ac6d09af53.tar.bz2 volse-hubzilla-c2e299440380f04c55dc4cd77ea8e0ac6d09af53.zip |
Merge pull request #555 from dawnbreak/QA_testing
[TASK] Restructure tests/ folder.
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/composer.json b/composer.json index 7326fbc6e..abf583875 100644 --- a/composer.json +++ b/composer.json @@ -27,8 +27,15 @@ "ext-gd" : "*", "ext-mbstring" : "*", "ext-xml" : "*", - "sabre/dav" : "~3.2", - "ext-openssl" : "*" + "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" : { @@ -36,8 +43,13 @@ "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 |