X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=composer.json;h=d8d93b63f251d0ef8fb1abb4ddca438346c57148;hb=3d8e82d95d9cc76b45a8db301b22c4111f335e1c;hp=efd4bd0812b12c88a51f4459598293dee5dd1efe;hpb=bda87e6536d07ef245a60d270ecaa1fba768928e;p=friendica.git diff --git a/composer.json b/composer.json index efd4bd0812..d8d93b63f2 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "issues": "https://github.com/friendica/friendica/issues" }, "require": { - "php": ">=7.0", + "php": ">=7.3", "ext-ctype": "*", "ext-curl": "*", "ext-dom": "*", @@ -27,26 +27,33 @@ "ext-simplexml": "*", "ext-xml": "*", "asika/simple-console": "^1.0", - "bacon/bacon-qr-code": "^1.0", + "bacon/bacon-qr-code": "^2.0.0", "divineomega/password_exposed": "^2.8", "ezyang/htmlpurifier": "^4.7", "friendica/json-ld": "^1.0", + "geekwright/po": "^2.0", + "guzzlehttp/guzzle": "^6.5", "league/html-to-markdown": "^4.8", "level-2/dice": "^4", "lightopenid/lightopenid": "dev-master", + "matriphe/iso-639": "^1.2", + "mattwright/urlresolver": "^2.0", "michelf/php-markdown": "^1.7", + "minishlink/web-push": "^6.0", "mobiledetect/mobiledetectlib": "^2.8", "monolog/monolog": "^1.25", "nikic/fast-route": "^1.3", "paragonie/hidden-string": "^1.0", - "patrickschur/language-detection": "^3.4", + "patrickschur/language-detection": "^5.0.0", "pear/console_table": "^1.3", "phpseclib/phpseclib": "^2.0", "pragmarx/google2fa": "^5.0", - "pragmarx/recovery": "^0.1.0", + "pragmarx/recovery": "^0.2", "psr/container": "^1.0", "seld/cli-prompt": "^1.0", "smarty/smarty": "^3.1", + "ua-parser/uap-php": "^3.9", + "xemlock/htmlpurifier-html5": "^0.1.11", "fxp/composer-asset-plugin": "^1.4", "bower-asset/base64": "^1.0", "bower-asset/chart-js": "^2.8", @@ -64,8 +71,7 @@ "npm-asset/moment": "^2.24", "npm-asset/perfect-scrollbar": "0.6.16", "npm-asset/textcomplete": "^0.18.2", - "npm-asset/typeahead.js": "^0.11.1", - "matriphe/iso-639": "^1.2" + "npm-asset/typeahead.js": "^0.11.1" }, "repositories": [ { @@ -79,9 +85,6 @@ "Friendica\\Addon\\": "addon/" }, "files": [ - "include/conversation.php", - "include/dba.php", - "include/enotify.php", "boot.php" ] }, @@ -92,7 +95,7 @@ }, "config": { "platform": { - "php": "7.0" + "php": "7.3" }, "autoloader-suffix": "Friendica", "optimize-autoloader": true, @@ -122,14 +125,16 @@ ] }, "require-dev": { - "phpdocumentor/reflection-docblock": "^3.0.2", - "phpunit/php-token-stream": "^1.4.2", + "mockery/mockery": "^1.3", "mikey179/vfsstream": "^1.6", - "mockery/mockery": "^1.2", - "johnkary/phpunit-speedtrap": "1.1", - "php-parallel-lint/php-parallel-lint": "^1.2" + "phpunit/phpunit": "^9", + "dms/phpunit-arraysubset-asserts": "^0.3.1" }, "scripts": { - "test": "phpunit" + "test": "phpunit", + "lint": "find . -name \\*.php -not -path './vendor/*' -not -path './view/asset/*' -print0 | xargs -0 -n1 php -l", + "cs:install": "@composer install --working-dir=bin/dev/php-cs-fixer", + "cs:check": ["@cs:install", "bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff"], + "cs:fix": ["@cs:install", "bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer fix"] } }