aboutsummaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-26 09:26:37 +0000
committerMario <mario@mariovavti.com>2020-11-26 09:26:37 +0000
commitde054026f25233fe47938c32777605bb900253f3 (patch)
treec95044796ee9cfcdd09232989edac45cfb7b83e8 /composer.json
parent175b45d1ed501ae2392d256e399e8668e3192dc4 (diff)
downloadvolse-hubzilla-de054026f25233fe47938c32777605bb900253f3.tar.gz
volse-hubzilla-de054026f25233fe47938c32777605bb900253f3.tar.bz2
volse-hubzilla-de054026f25233fe47938c32777605bb900253f3.zip
try phpunit 9, remove dbunit (not compatible and abandoned), re-enable xdebug
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json152
1 files changed, 77 insertions, 75 deletions
diff --git a/composer.json b/composer.json
index c4c7df072..ed4665c10 100644
--- a/composer.json
+++ b/composer.json
@@ -1,77 +1,79 @@
{
- "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://framagit.org/hubzilla/core/",
- "license" : "MIT",
- "authors" : [{
- "name" : "Mike Macgirvin",
- "role" : "founder"
- }
- ],
- "support" : {
- "issues" : "https://framagit.org/hubzilla/core/issues",
- "source" : "https://framagit.org/hubzilla/core/"
- },
- "require" : {
- "php" : ">=5.5",
- "ext-curl" : "*",
- "ext-gd" : "*",
- "ext-mbstring" : "*",
- "ext-xml" : "*",
- "ext-openssl" : "*",
- "sabre/dav" : "^4.0",
- "michelf/php-markdown" : "^1.7",
- "bshaffer/oauth2-server-php": "^1.9",
- "ezyang/htmlpurifier": "^4.9",
- "simplepie/simplepie": "~1.5",
- "league/html-to-markdown": "^4.4",
- "pear/text_languagedetect": "^1.0",
- "commerceguys/intl": "~1.0.5",
- "lukasreschke/id3parser": "^0.0.3",
- "smarty/smarty": "~3.1",
- "ramsey/uuid": "^3.8",
- "twbs/bootstrap": "^4.3.1",
- "blueimp/jquery-file-upload": "^10.3",
- "desandro/imagesloaded": "^4.1"
- },
- "require-dev" : {
- "phpunit/phpunit" : "^7",
- "behat/behat" : "@stable",
- "behat/mink-extension": "@stable",
- "behat/mink-goutte-driver": "@stable",
- "php-mock/php-mock-phpunit": "@stable",
- "phpunit/dbunit": "@stable",
- "phpmd/phpmd": "^2.6",
- "squizlabs/php_codesniffer": "*",
- "php-mock/php-mock": "^2.2"
- },
- "autoload" : {
- "psr-4" : {
- "Hubzilla\\" : "include/",
- "Zotlabs\\" : "Zotlabs/"
- }
- },
- "autoload-dev" : {
- "psr-4" : {
- "Zotlabs\\Tests\\Unit\\" : "tests/unit"
- }
- },
- "minimum-stability" : "stable",
- "config" : {
- "notify-on-install" : false,
- "optimize-autoloader" : true
- },
- "repositories": [{
- "type": "vcs",
- "url": "https://github.com/simplepie/simplepie"
- }]
+ "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://framagit.org/hubzilla/core/",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Mike Macgirvin",
+ "role": "founder"
+ }
+ ],
+ "support": {
+ "issues": "https://framagit.org/hubzilla/core/issues",
+ "source": "https://framagit.org/hubzilla/core/"
+ },
+ "require": {
+ "php": ">=5.5",
+ "ext-curl": "*",
+ "ext-gd": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "ext-openssl": "*",
+ "sabre/dav": "^4.0",
+ "michelf/php-markdown": "^1.7",
+ "bshaffer/oauth2-server-php": "^1.9",
+ "ezyang/htmlpurifier": "^4.9",
+ "simplepie/simplepie": "~1.5",
+ "league/html-to-markdown": "^4.4",
+ "pear/text_languagedetect": "^1.0",
+ "commerceguys/intl": "~1.0.5",
+ "lukasreschke/id3parser": "^0.0.3",
+ "smarty/smarty": "~3.1",
+ "ramsey/uuid": "^3.8",
+ "twbs/bootstrap": "^4.3.1",
+ "blueimp/jquery-file-upload": "^10.3",
+ "desandro/imagesloaded": "^4.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.4",
+ "behat/behat": "@stable",
+ "behat/mink-extension": "@stable",
+ "behat/mink-goutte-driver": "@stable",
+ "php-mock/php-mock-phpunit": "^2.6",
+ "phpmd/phpmd": "^2.6",
+ "squizlabs/php_codesniffer": "*",
+ "php-mock/php-mock": "^2.2"
+ },
+ "autoload": {
+ "psr-4": {
+ "Hubzilla\\": "include/",
+ "Zotlabs\\": "Zotlabs/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Zotlabs\\Tests\\Unit\\": "tests/unit"
+ }
+ },
+ "minimum-stability": "stable",
+ "config": {
+ "notify-on-install": false,
+ "optimize-autoloader": true
+ },
+ "repositories": [
+ {
+ "type": "vcs",
+ "url": "https://github.com/simplepie/simplepie"
+ }
+ ]
}