yii-starter-kit / yii2-starter-kit

Yii2 Starter Kit
http://yii2-starter-kit.terentev.net
Other
1.42k stars 650 forks source link

can not update or install - error in substack/node-charm.git #744

Closed overals closed 4 years ago

overals commented 4 years ago

Issue from https://github.com/composer/composer/issues/8592 I think its problem with yii2-starter-kit


My composer.json:

{
  "name": "yii2-starter-kit/yii2-starter-kit",
  "description": "Yii2 Starter Kit Application Template",
  "keywords": [
    "yii2",
    "framework",
    "start",
    "cms",
    "application template",
    "yii2 advanced"
  ],
  "authors": [
    {
      "name": "Eugene Terentev",
      "email": "eugene@terentev.net",
      "homepage": "http://terentev.net"
    }
  ],
  "type": "project",
  "license": "BSD-3-Clause",
  "support": {
    "issues": "https://github.com/yii2-starter-kit/yii2-starter-kit/issues?state=open",
    "source": "https://github.com/yii2-starter-kit/yii2-starter-kit"
  },
  "require": {
    "php": ">=7.1.0",
    "ext-intl": "*",
    "yiisoft/yii2": "^2.0.13",
    "yiisoft/yii2-bootstrap": "^2.0.0",
    "yiisoft/yii2-swiftmailer": "^2.0.0",
    "yiisoft/yii2-authclient": "^2.0.0",
    "yiisoft/yii2-jui": "^2.0.0",
    "yii2-starter-kit/yii2-file-kit": "^2.0.0",
    "dhtmlx/connector-php": "dev-modern",
    "trntv/yii2-aceeditor": "^2.0",
    "trntv/probe": "^1.0",
    "trntv/yii2-glide": "^1.2",

    "trntv/yii2-command-bus": "^3.0",
    "intervention/image": "^2.1",
    "vlucas/phpdotenv": "^2.0",
    "npm-asset/admin-lte": "^2.0",
    "npm-asset/font-awesome": "^4.0",
    "npm-asset/html5shiv": "^3.0",
    "npm-asset/jquery-slimscroll": "^1.3",
    "npm-asset/flot": "^0.8@alpha",
    "symfony/process": "^4.0",
    "guzzlehttp/guzzle": "^6.0",
    "alexantr/yii2-elfinder": "^1.3",
    "trntv/sitemaped": "^0.1",
    "yii2mod/yii2-swagger": "^1.1"
  },
  "require-dev": {
    "yiisoft/yii2-debug": "^2.0.0",
    "yiisoft/yii2-gii": "^2.0.0",
    "yiisoft/yii2-faker": "^2.0.0",
    "codeception/codeception": "2.4.0",
    "codeception/verify": "^0.3.1"
  },
  "autoload-dev": {
    "psr-4": {
      "tests\\": "tests/"
    }
  },
  "suggest": {
    "trntv/yii2-debug-xhprof": "dev-master@dev"
  },
  "config": {
    "process-timeout": 1800,
    "optimize-autoloader": true
  },
  "repositories": [ 
    { "type": "composer", 
      "url": "https://asset-packagist.org" } 
    ],
  "archive": {
    "exclude": ["docs"]
  },
  "scripts": {
    "build:env": [
      "cp .env.dist .env"
    ],
    "build:app": [
      "@composer install",
      "echo 'waiting for mysql' && sleep 10",
      "console/yii app/setup --interactive=0"
    ],
    "docker:build": [
      "@build:env",
      "@docker:start",
      "docker-compose exec -T app composer run-script build:app",
      "docker-compose run -T --rm webpacker npm i npm@latest -g",
      "docker-compose run -T --rm webpacker npm install",
      "docker-compose run -T --rm webpacker npm run build",
      "echo \"All ok!\""
    ],
    "docker:start": [
      "docker-compose up --force-recreate -d"
    ],
    "docker:cleanup": [
      "docker-compose rm -fsv"
    ]
  }
}

Output of composer diagnose:

Checking composer.json: OK
Checking platform settings: OK
Checking git settings: OK
Checking http connectivity to packagist: OK
Checking https connectivity to packagist: OK
Checking github.com oauth access: OK
Checking disk free space: OK
Checking pubkeys:
Tags Public Key Fingerprint: 57815BA2 7E54DC31 7ECC7CC5 573090D0  87719BA6 8F3BB
723 4E5D42D0 84A14642
Dev Public Key Fingerprint: 4AC45767 E5EC2265 2F0C1167 CBBB8A2B  0C708369 153E32
8C AD90147D AFE50952
OK
Checking composer version: OK
Composer version: 1.9.3
PHP version: 7.1.9
PHP binary path: C:\wamp64\bin\php\php7.1.9\php.exe

When I run this command:

composer update or composer require **** I get the following output:

Installation failed, reverting ./composer.json to its original content.

  [RuntimeException]
  Failed to execute git clone --mirror "git+ssh://git@github.com/substack/nod
  e-charm.git" "C:/Users/Usuario/AppData/Local/Composer/vcs/git-ssh---git-git
  hub.com-substack-node-charm.git/"

  Cloning into bare repository 'C:/Users/Usuario/AppData/Local/Composer/vcs/g
  it-ssh---git-github.com-substack-node-charm.git'...
  Host key verification failed.
  fatal: Could not read from remote repository.

  Please make sure you have the correct access rights
  and the repository exists.
XzAeRo commented 4 years ago

I will try it. But in general we are greatly due a big dependency update. I will check if there are any issues and come back.

XzAeRo commented 4 years ago

I just ran composer update without any problems.

Are you trying to install this package? https://www.npmjs.com/package/charm

It seems that you are forgetting to install it as an npm-asset:

composer require npm-asset/charm

You were probably trying to install it as:

composer require substack/node-charm

Which is not valid, since that is a NPM package and not a composer package.

PS: the charm asset is already included in this project, but you need to setup the asset. Please check the common/assets folder for examples on how to do it.

overals commented 4 years ago

My steps (clean install): 1) composer create-project yii2-starter-kit/yii2-starter-kit dtb.com response:

Creating a "yii2-starter-kit/yii2-starter-kit" project at "./dtb.com"
Installing yii2-starter-kit/yii2-starter-kit (3.0.3)
  - Installing yii2-starter-kit/yii2-starter-kit (3.0.3): Loading from cache
Created project in D:\openserver\OSPanel\domains\dtb.com
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Package operations: 275 installs, 0 updates, 0 removals
  - Installing yiisoft/yii2-composer (2.0.7): Loading from cache
  - Installing ezyang/htmlpurifier (v4.10.0): Loading from cache
  - Installing cebe/markdown (1.1.2): Loading from cache
  - Installing bower-asset/jquery (3.2.1): Loading from cache
  - Installing bower-asset/yii2-pjax (2.0.7.1): Loading from cache
  - Installing bower-asset/punycode (v1.3.2): Loading from cache
  - Installing bower-asset/inputmask (3.3.11): Loading from cache
  - Installing yiisoft/yii2 (2.0.15.1): Loading from cache
  - Installing bower-asset/jquery-ui (1.12.1): Loading from cache
  - Installing yiisoft/yii2-jui (2.0.7): Loading from cache
  - Installing studio-42/elfinder (2.1.46): Loading from cache
  - Installing alexantr/yii2-elfinder (1.5.0): Loading from cache
  - Installing asofter/yii2-imperavi-redactor (dev-master 24c9a1e): Cloning 24c9a1e83d from cache
  - Installing bower-asset/blueimp-canvas-to-blob (v3.14.0): Loading from cache
  - Installing bower-asset/blueimp-load-image (v2.20.1): Loading from cache
  - Installing bower-asset/blueimp-tmpl (v3.11.0): Loading from cache
  - Installing bower-asset/bootstrap (v3.3.7): Loading from cache
  - Installing doctrine/lexer (v1.0.1): Loading from cache
  - Installing egulias/email-validator (2.1.7): Loading from cache
  - Installing guzzlehttp/promises (v1.3.1): Loading from cache
  - Installing ralouphie/getallheaders (2.0.5): Loading from cache
  - Installing psr/http-message (1.0.1): Loading from cache
  - Installing guzzlehttp/psr7 (1.5.2): Loading from cache
  - Installing intervention/image (2.4.2): Loading from cache
  - Installing psr/simple-cache (1.0.1): Loading from cache
  - Installing league/uri-hostname-parser (1.1.1): Loading from cache
  - Installing league/uri-interfaces (1.1.1): Loading from cache
  - Installing league/uri-components (1.8.2): Loading from cache
  - Installing league/uri-manipulations (1.5.0): Loading from cache
  - Installing league/uri-parser (1.4.1): Loading from cache
  - Installing league/uri-schemes (1.2.1): Loading from cache
  - Installing npm-asset/util-extend (1.0.3): Loading from cache
  - Installing npm-asset/classie (1.0.0): Loading from cache
  - Installing npm-asset/xtend (4.0.1): Loading from cache
  - Installing npm-asset/indexof (0.0.1): Loading from cache
  - Installing npm-asset/vm-browserify (0.0.4): Loading from cache
  - Installing npm-asset/inherits (2.0.1): Loading from cache
  - Installing npm-asset/util (0.10.3): Loading from cache
  - Installing npm-asset/querystring (0.2.0): Loading from cache
  - Installing npm-asset/punycode (1.3.2): Loading from cache
  - Installing npm-asset/url (0.11.0): Loading from cache
  - Installing npm-asset/tty-browserify (0.0.1): Loading from cache
  - Installing npm-asset/process (0.11.10): Loading from cache
  - Installing npm-asset/timers-browserify (1.4.2): Loading from cache
  - Installing npm-asset/util-deprecate (1.0.2): Loading from cache
  - Installing npm-asset/string_decoder (0.10.31): Loading from cache
  - Installing npm-asset/process-nextick-args (v1.0.8): Loading from cache
  - Installing npm-asset/isarray (0.0.1): Loading from cache
  - Installing npm-asset/core-util-is (1.0.2): Loading from cache
  - Installing npm-asset/readable-stream (2.0.5): Loading from cache
  - Installing npm-asset/through2 (2.0.4): Loading from cache
  - Installing npm-asset/acorn (4.0.13): Loading from cache
  - Installing npm-asset/syntax-error (1.3.0): Loading from cache
  - Installing npm-asset/minimist (1.2.0): Loading from cache
  - Installing npm-asset/subarg (1.0.0): Loading from cache
  - Installing npm-asset/to-arraybuffer (1.0.1): Loading from cache
  - Installing npm-asset/builtin-status-codes (2.0.0): Loading from cache
  - Installing npm-asset/stream-http (2.2.1): Loading from cache
  - Installing npm-asset/stream-browserify (2.0.1): Loading from cache
  - Installing npm-asset/jsonify (0.0.0): Loading from cache
  - Installing npm-asset/array-reduce (0.0.0): Loading from cache
  - Installing npm-asset/array-map (0.0.0): Loading from cache
  - Installing npm-asset/array-filter (0.0.1): Loading from cache
  - Installing npm-asset/shell-quote (1.6.1): Loading from cache
  - Installing npm-asset/safe-buffer (5.1.2): Loading from cache
  - Installing npm-asset/sha.js (2.4.11): Loading from cache
  - Installing npm-asset/json-stable-stringify (0.0.1): Loading from cache
  - Installing npm-asset/shasum (1.0.2): Loading from cache
  - Installing npm-asset/resolve (1.1.7): Loading from cache
  - Installing npm-asset/read-only-stream (2.0.0): Loading from cache
  - Installing npm-asset/querystring-es3 (0.2.1-patch0): Loading from cache
  - Installing npm-asset/path-browserify (0.0.1): Loading from cache
  - Installing npm-asset/path-platform (0.11.15): Loading from cache
  - Installing npm-asset/parents (1.0.1): Loading from cache
  - Installing npm-asset/os-browserify (0.1.2): Loading from cache
  - Installing npm-asset/duplexer2 (0.1.4): Loading from cache
  - Installing npm-asset/stream-combiner2 (1.1.1): Loading from cache
  - Installing npm-asset/through (2.3.8): Loading from cache
  - Installing npm-asset/jsonparse (1.3.1): Loading from cache
  - Installing npm-asset/jsonstream (v1.0.6): Loading from cache
  - Installing npm-asset/defined (1.0.0): Loading from cache
  - Installing npm-asset/detective (4.5.0): Loading from cache
  - Installing npm-asset/typedarray (0.0.6): Loading from cache
  - Installing npm-asset/concat-stream (1.5.2): Loading from cache
  - Installing npm-asset/cached-path-relative (1.0.2): Loading from cache
  - Installing npm-asset/browser-resolve (1.11.3): Loading from cache
  - Installing npm-asset/module-deps (4.1.1): Loading from cache
  - Installing npm-asset/stream-splicer (2.0.0): Loading from cache
  - Installing npm-asset/labeled-stream-splicer (2.0.0): Loading from cache
  - Installing npm-asset/astw (2.2.0): Loading from cache
  - Installing npm-asset/lexical-scope (1.2.0): Loading from cache
  - Installing npm-asset/is-buffer (1.1.6): Loading from cache
  - Installing npm-asset/source-map (0.5.7): Loading from cache
  - Installing npm-asset/lodash.memoize (3.0.9): Loading from cache
  - Installing npm-asset/inline-source-map (0.6.2): Loading from cache
  - Installing npm-asset/convert-source-map (1.1.3): Loading from cache
  - Installing npm-asset/combine-source-map (0.7.2): Loading from cache
  - Installing npm-asset/insert-module-globals (7.0.2): Loading from cache
  - Installing npm-asset/https-browserify (1.0.0): Loading from cache
  - Installing npm-asset/htmlescape (1.1.1): Loading from cache
  - Installing npm-asset/function-bind (1.1.1): Loading from cache
  - Installing npm-asset/has (1.0.3): Loading from cache
  - Installing npm-asset/path-is-absolute (1.0.1): Loading from cache
  - Installing npm-asset/wrappy (1.0.2): Loading from cache
  - Installing npm-asset/once (1.4.0): Loading from cache
  - Installing npm-asset/concat-map (0.0.1): Loading from cache
  - Installing npm-asset/balanced-match (1.0.0): Loading from cache
  - Installing npm-asset/brace-expansion (1.1.11): Loading from cache
  - Installing npm-asset/minimatch (3.0.4): Loading from cache
  - Installing npm-asset/inflight (1.0.6): Loading from cache
  - Installing npm-asset/fs.realpath (1.0.0): Loading from cache
  - Installing npm-asset/glob (7.1.3): Loading from cache
  - Installing npm-asset/events (1.1.1): Loading from cache
  - Installing npm-asset/domain-browser (1.1.7): Loading from cache
  - Installing npm-asset/deps-sort (2.0.0): Loading from cache
  - Installing npm-asset/randombytes (2.0.6): Loading from cache
  - Installing npm-asset/randomfill (1.0.4): Loading from cache
  - Installing npm-asset/hash-base (3.0.4): Loading from cache
  - Installing npm-asset/ripemd160 (2.0.2): Loading from cache
  - Installing npm-asset/md5.js (1.3.5): Loading from cache
  - Installing npm-asset/cipher-base (1.0.4): Loading from cache
  - Installing npm-asset/create-hash (1.2.0): Loading from cache
  - Installing npm-asset/create-hmac (1.1.7): Loading from cache
  - Installing npm-asset/pbkdf2 (3.0.17): Loading from cache
  - Installing npm-asset/evp_bytestokey (1.0.3): Loading from cache
  - Installing npm-asset/buffer-xor (1.0.3): Loading from cache
  - Installing npm-asset/browserify-aes (1.2.0): Loading from cache
  - Installing npm-asset/minimalistic-assert (1.0.1): Loading from cache
  - Installing npm-asset/bn.js (4.11.8): Loading from cache
  - Installing npm-asset/asn1.js (4.10.1): Loading from cache
  - Installing npm-asset/parse-asn1 (5.1.1): Loading from cache
  - Installing npm-asset/browserify-rsa (4.0.1): Loading from cache
  - Installing npm-asset/public-encrypt (4.0.3): Loading from cache
  - Installing npm-asset/brorand (1.1.0): Loading from cache
  - Installing npm-asset/miller-rabin (4.0.1): Loading from cache
  - Installing npm-asset/diffie-hellman (5.0.3): Loading from cache
  - Installing npm-asset/minimalistic-crypto-utils (1.0.1): Loading from cache
  - Installing npm-asset/hash.js (1.0.3): Loading from cache
  - Installing npm-asset/hmac-drbg (1.0.1): Loading from cache
  - Installing npm-asset/elliptic (6.4.1): Loading from cache
  - Installing npm-asset/create-ecdh (4.0.3): Loading from cache
  - Installing npm-asset/browserify-sign (4.0.4): Loading from cache
  - Installing npm-asset/des.js (1.0.0): Loading from cache
  - Installing npm-asset/browserify-des (1.0.2): Loading from cache
  - Installing npm-asset/browserify-cipher (1.0.1): Loading from cache
  - Installing npm-asset/crypto-browserify (3.12.0): Loading from cache
  - Installing npm-asset/constants-browserify (1.0.0): Loading from cache
  - Installing npm-asset/date-now (0.1.4): Loading from cache
  - Installing npm-asset/console-browserify (1.1.0): Loading from cache
  - Installing npm-asset/ieee754 (1.1.12): Loading from cache
  - Installing npm-asset/base64-js (1.3.0): Loading from cache
  - Installing npm-asset/buffer (5.2.1): Loading from cache
  - Installing npm-asset/pako (0.2.9): Loading from cache
  - Installing npm-asset/browserify-zlib (0.1.4): Loading from cache
  - Installing npm-asset/umd (3.0.3): Loading from cache
  - Installing npm-asset/browser-pack (6.0.2): Loading from cache
  - Installing npm-asset/assert (1.4.1): Loading from cache
  - Installing npm-asset/browserify (14.3.0): Loading from cache
  - Installing npm-asset/domhelper (0.9.1): Loading from cache
  - Installing npm-asset/slimscroll (0.9.1): Loading from cache
  - Installing npm-asset/jquery-mousewheel (3.1.13): Loading from cache
  - Installing npm-asset/almond (0.3.3): Loading from cache
  - Installing npm-asset/select2 (4.0.5): Loading from cache
  - Installing npm-asset/eve-raphael (0.5.0): Loading from cache
  - Installing npm-asset/raphael (2.2.7): Loading from cache
  - Installing npm-asset/charm (0.1.2): Loading from cache
  - Installing npm-asset/pace (0.0.4): Loading from cache
  - Installing npm-asset/morris.js (0.5.1): Loading from cache
  - Installing npm-asset/moment (2.23.0): Loading from cache
  - Installing npm-asset/jquery (3.3.1): Loading from cache
  - Installing npm-asset/jvectormap (1.2.2): Loading from cache
  - Installing npm-asset/jquery-ui (1.12.1): Loading from cache
  - Installing npm-asset/jquery-sparkline (2.4.0): Loading from cache
  - Installing npm-asset/jquery-knob (1.2.13): Loading from cache
  - Installing npm-asset/ionicons (3.0.0): Loading from cache
  - Installing npm-asset/ion-rangeslider (2.3.0): Loading from cache
  - Installing npm-asset/inputmask (3.3.11): Loading from cache
  - Installing npm-asset/fullcalendar (3.10.0): Loading from cache
  - Installing npm-asset/font-awesome (4.7.0): Loading from cache
  - Installing npm-asset/flot (0.8.0-alpha1): Loading from cache
  - Installing npm-asset/fastclick (1.0.6): Loading from cache
  - Installing npm-asset/datatables.net (1.10.19): Loading from cache
  - Installing npm-asset/datatables.net-bs (1.10.19): Loading from cache
  - Installing npm-asset/ckeditor (4.11.2): Loading from cache
  - Installing npm-asset/chart.js (1.0.2): Loading from cache
  - Installing npm-asset/bootstrap-timepicker (0.5.2): Loading from cache
  - Installing npm-asset/bootstrap-slider (9.10.0): Loading from cache
  - Installing npm-asset/bootstrap-daterangepicker (2.1.30): Loading from cache
  - Installing npm-asset/bootstrap-datepicker (1.8.0): Loading from cache
  - Installing npm-asset/bootstrap-colorpicker (2.5.3): Loading from cache
  - Installing npm-asset/bootstrap (3.4.0): Loading from cache
  - Installing npm-asset/admin-lte (2.4.8): Loading from cache
  - Installing npm-asset/html5shiv (3.7.3): Loading from cache
  - Installing npm-asset/jquery-slimscroll (1.3.8): Loading from cache
  - Installing paragonie/random_compat (v9.99.99): Loading from cache
  - Installing symfony/polyfill-php70 (v1.10.0): Loading from cache
  - Installing trntv/cheatsheet (0.1): Loading from cache
  - Installing trntv/probe (1.0.1): Loading from cache
  - Installing trntv/sitemaped (0.1.2): Loading from cache
  - Installing bower-asset/ace-builds (v1.4.2): Loading from cache
  - Installing trntv/yii2-aceeditor (2.1.2): Loading from cache
  - Installing symfony/process (v4.2.2): Loading from cache
  - Installing yiisoft/yii2-queue (2.1.0): Loading from cache
  - Installing trntv/yii2-command-bus (3.2.0): Loading from cache
  - Installing bower-asset/moment (2.23.0): Loading from cache
  - Installing bower-asset/eonasdan-bootstrap-datetimepicker (4.17.47): Loading from cache
  - Installing trntv/yii2-datetime-widget (dev-master 0340f8a): Cloning 0340f8aec1 from cache
  - Installing symfony/polyfill-mbstring (v1.10.0): Loading from cache
  - Installing symfony/http-foundation (v3.4.21): Loading from cache
  - Installing league/uri (5.3.0)
  - Installing league/flysystem (1.0.49): Loading from cache
  - Installing league/glide (1.4.0): Loading from cache
  - Installing trntv/yii2-glide (1.2.2): Loading from cache
  - Installing vlucas/phpdotenv (v2.5.2): Loading from cache
  - Installing bower-asset/blueimp-file-upload (v9.28.0): Loading from cache
  - Installing yii2-starter-kit/yii2-file-kit (2.0.0): Loading from cache
  - Installing symfony/finder (v4.2.2): Loading from cache
  - Installing doctrine/annotations (v1.6.0): Loading from cache
  - Installing zircote/swagger-php (2.0.13): Loading from cache
  - Installing bower-asset/swagger-ui (v3.20.8): Loading from cache
  - Installing yii2mod/yii2-swagger (1.1.1): Loading from cache
  - Installing yiisoft/yii2-httpclient (2.0.7): Loading from cache
  - Installing yiisoft/yii2-authclient (2.1.7): Loading from cache
  - Installing swiftmailer/swiftmailer (v6.1.3): Loading from cache
  - Installing yiisoft/yii2-swiftmailer (2.1.2): Loading from cache
  - Installing symfony/polyfill-ctype (v1.10.0): Loading from cache
  - Installing symfony/yaml (v4.2.2): Loading from cache
  - Installing symfony/contracts (v1.0.2): Loading from cache
  - Installing symfony/event-dispatcher (v4.2.2): Loading from cache
  - Installing symfony/dom-crawler (v4.2.2): Loading from cache
  - Installing symfony/css-selector (v4.2.2): Loading from cache
  - Installing symfony/console (v4.2.2): Loading from cache
  - Installing symfony/browser-kit (v4.2.2): Loading from cache
  - Installing guzzlehttp/guzzle (6.3.3): Loading from cache
  - Installing facebook/webdriver (1.6.0): Loading from cache
  - Installing sebastian/recursion-context (3.0.0): Loading from cache
  - Installing sebastian/exporter (3.1.0): Loading from cache
  - Installing phpunit/php-text-template (1.2.1): Loading from cache
  - Installing doctrine/instantiator (1.1.0): Loading from cache
  - Installing phpunit/phpunit-mock-objects (6.1.2): Loading from cache
  - Installing codeception/stub (1.0.4): Loading from cache
  - Installing sebastian/diff (3.0.1): Loading from cache
  - Installing sebastian/comparator (3.0.2): Loading from cache
  - Installing sebastian/version (2.0.1): Loading from cache
  - Installing sebastian/resource-operations (1.0.0): Loading from cache
  - Installing sebastian/object-reflector (1.1.1): Loading from cache
  - Installing sebastian/object-enumerator (3.0.3): Loading from cache
  - Installing sebastian/global-state (2.0.0): Loading from cache
  - Installing sebastian/environment (3.1.0): Loading from cache
  - Installing phpunit/php-timer (2.0.0): Loading from cache
  - Installing phpunit/php-file-iterator (1.4.5): Loading from cache
  - Installing theseer/tokenizer (1.1.0): Loading from cache
  - Installing sebastian/code-unit-reverse-lookup (1.0.1): Loading from cache
  - Installing phpunit/php-token-stream (3.0.1): Loading from cache
  - Installing phpunit/php-code-coverage (6.0.5): Loading from cache
  - Installing webmozart/assert (1.4.0): Loading from cache
  - Installing phpdocumentor/reflection-common (1.0.1): Loading from cache
  - Installing phpdocumentor/type-resolver (0.4.0): Loading from cache
  - Installing phpdocumentor/reflection-docblock (4.3.0): Loading from cache
  - Installing phpspec/prophecy (1.8.0): Loading from cache
  - Installing phar-io/version (1.0.1): Loading from cache
  - Installing phar-io/manifest (1.0.1): Loading from cache
  - Installing myclabs/deep-copy (1.8.1): Loading from cache
  - Installing phpunit/phpunit (7.1.5): Loading from cache
  - Installing codeception/phpunit-wrapper (7.6.1): Loading from cache
  - Installing behat/gherkin (v4.6.0): Loading from cache
  - Installing codeception/codeception (2.4.0): Loading from cache
  - Installing codeception/verify (0.3.3): Loading from cache
  - Installing yiisoft/yii2-bootstrap (2.0.8): Loading from cache
  - Installing yiisoft/yii2-debug (2.0.14): Loading from cache
  - Installing fzaninotto/faker (v1.8.0): Loading from cache
  - Installing yiisoft/yii2-faker (2.0.4): Loading from cache
  - Installing phpspec/php-diff (v1.1.0): Loading from cache
  - Installing bower-asset/typeahead.js (v0.11.1): Loading from cache
  - Installing yiisoft/yii2-gii (2.0.8): Loading from cache
yii2-starter-kit/yii2-starter-kit suggests installing trntv/yii2-debug-xhprof (dev-master@dev)
studio-42/elfinder suggests installing barryvdh/elfinder-flysystem-driver (VolumeDriver for elFinder to use Flysystem as a root.)
studio-42/elfinder suggests installing google/apiclient (VolumeDriver GoogleDrive require `google/apiclient:^2.0.)
studio-42/elfinder suggests installing kunalvarma05/dropbox-php-sdk (VolumeDriver `Dropbox`2 require `kunalvarma05/dropbox-php-sdk.)
studio-42/elfinder suggests installing nao-pon/flysystem-google-drive (require in GoogleDrive network volume mounting with Flysystem.)
intervention/image suggests installing ext-imagick (to use Imagick based image processing.)
intervention/image suggests installing intervention/imagecache (Caching extension for the Intervention Image library)
league/uri-hostname-parser suggests installing psr/simple-cache-implementation (To enable using other cache providers)
paragonie/random_compat suggests installing ext-libsodium (Provides a modern crypto API that can be used to generate random bytes.)
yiisoft/yii2-queue suggests installing aws/aws-sdk-php (Need for aws SQS.)
yiisoft/yii2-queue suggests installing enqueue/amqp-lib (Need for AMQP interop queue.)
yiisoft/yii2-queue suggests installing ext-gearman (Need for Gearman queue.)
yiisoft/yii2-queue suggests installing ext-pcntl (Need for process signals.)
yiisoft/yii2-queue suggests installing pda/pheanstalk (Need for Beanstalk queue.)
yiisoft/yii2-queue suggests installing php-amqplib/php-amqplib (Need for AMQP queue.)
yiisoft/yii2-queue suggests installing yiisoft/yii2-redis (Need for Redis queue.)
league/flysystem suggests installing league/flysystem-aws-s3-v2 (Allows you to use S3 storage with AWS SDK v2)
league/flysystem suggests installing league/flysystem-aws-s3-v3 (Allows you to use S3 storage with AWS SDK v3)
league/flysystem suggests installing league/flysystem-azure (Allows you to use Windows Azure Blob storage)
league/flysystem suggests installing league/flysystem-cached-adapter (Flysystem adapter decorator for metadata caching)
league/flysystem suggests installing league/flysystem-eventable-filesystem (Allows you to use EventableFilesystem)
league/flysystem suggests installing league/flysystem-rackspace (Allows you to use Rackspace Cloud Files)
league/flysystem suggests installing league/flysystem-sftp (Allows you to use SFTP server storage via phpseclib)
league/flysystem suggests installing league/flysystem-webdav (Allows you to use WebDAV storage)
league/flysystem suggests installing league/flysystem-ziparchive (Allows you to use ZipArchive adapter)
league/flysystem suggests installing spatie/flysystem-dropbox (Allows you to use Dropbox storage)
league/flysystem suggests installing srmklive/flysystem-dropbox-v2 (Allows you to use Dropbox storage for PHP 5 applications)
yiisoft/yii2-authclient suggests installing spomky-labs/jose (required for JWS,JWT or JWK related flows like OpenIDConnect)
swiftmailer/swiftmailer suggests installing true/punycode (Needed to support internationalized email addresses, if ext-intl is not installed)
symfony/contracts suggests installing psr/cache (When using the Cache contracts)
symfony/contracts suggests installing psr/container (When using the Service contracts)
symfony/contracts suggests installing symfony/cache-contracts-implementation
symfony/contracts suggests installing symfony/service-contracts-implementation
symfony/contracts suggests installing symfony/translation-contracts-implementation
symfony/event-dispatcher suggests installing symfony/dependency-injection
symfony/event-dispatcher suggests installing symfony/http-kernel
symfony/console suggests installing psr/log-implementation (For using the console logger)
symfony/console suggests installing symfony/lock
guzzlehttp/guzzle suggests installing psr/log (Required for using the Log middleware)
facebook/webdriver suggests installing ext-SimpleXML (For Firefox profile creation)
sebastian/global-state suggests installing ext-uopz (*)
phpunit/php-code-coverage suggests installing ext-xdebug (^2.6.0)
phpunit/phpunit suggests installing ext-xdebug (*)
phpunit/phpunit suggests installing phpunit/php-invoker (^2.0)
codeception/codeception suggests installing aws/aws-sdk-php (For using AWS Auth in REST module and Queue module)
codeception/codeception suggests installing codeception/phpbuiltinserver (Start and stop PHP built-in web server for your tests)
codeception/codeception suggests installing codeception/specify (BDD-style code blocks)
codeception/codeception suggests installing flow/jsonpath (For using JSONPath in REST module)
codeception/codeception suggests installing league/factory-muffin (For DataFactory module)
codeception/codeception suggests installing league/factory-muffin-faker (For Faker support in DataFactory module)
codeception/codeception suggests installing phpseclib/phpseclib (for SFTP option in FTP Module)
codeception/codeception suggests installing stecman/symfony-console-completion (For BASH autocompletion)
codeception/codeception suggests installing symfony/phpunit-bridge (For phpunit-bridge support)
Generating optimized autoload files
Deprecation Notice: Class tests\api\FunctionalTester located in D:/openserver/OSPanel/domains/dtb.com/tests\api\_support\FunctionalTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\backend\AcceptanceTester located in D:/openserver/OSPanel/domains/dtb.com/tests\backend\_support\AcceptanceTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\backend\FunctionalTester located in D:/openserver/OSPanel/domains/dtb.com/tests\backend\_support\FunctionalTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\backend\UnitTester located in D:/openserver/OSPanel/domains/dtb.com/tests\backend\_support\UnitTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\common\UnitTester located in D:/openserver/OSPanel/domains/dtb.com/tests\common\_support\UnitTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\console\UnitTester located in D:/openserver/OSPanel/domains/dtb.com/tests\console\_support\UnitTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\frontend\ArticleCest located in D:/openserver/OSPanel/domains/dtb.com/tests\frontend\functional\ArticleCest.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\frontend\AcceptanceHelper located in D:/openserver/OSPanel/domains/dtb.com/tests\frontend\_support\AcceptanceHelper.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\frontend\AcceptanceTester located in D:/openserver/OSPanel/domains/dtb.com/tests\frontend\_support\AcceptanceTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\frontend\FunctionalTester located in D:/openserver/OSPanel/domains/dtb.com/tests\frontend\_support\FunctionalTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\frontend\UnitHelper located in D:/openserver/OSPanel/domains/dtb.com/tests\frontend\_support\UnitHelper.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class tests\frontend\UnitTester located in D:/openserver/OSPanel/domains/dtb.com/tests\frontend\_support\UnitTester.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\AbstractUri located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\Data located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\File located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\Ftp located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\Http located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\Uri located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\UriException located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class League\Uri\Schemes\Ws located in D:/openserver/OSPanel/domains/dtb.com/vendor/league/uri-schemes/src\Schemes\deprecated.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class HTMLPurifier_Language_en_x_test located in D:/openserver/OSPanel/domains/dtb.com/vendor/ezyang/htmlpurifier/library\HTMLPurifier\Language\classes\en-x-test.php does not comply with psr-0 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class Egulias\EmailValidator\Exception\ExpectedQPair located in D:/openserver/OSPanel/domains/dtb.com/vendor/egulias/email-validator/EmailValidator\Exception\ExpectingQPair.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar://C:/ProgramData/ComposerSetup/bin/composer.phar/src/Composer/Autoload/ClassMapGenerator.php:201

2) cd dtp.com and composer update Response:

Loading composer repositories with package information
Updating dependencies (including require-dev)

  [RuntimeException]
  Failed to execute git clone --mirror "git+ssh://git@github.com/substack/node-charm.git" "C:/Users/User/AppData/Local
  /Composer/vcs/git-ssh---git-github.com-substack-node-charm.git/"

  Cloning into bare repository 'C:/Users/User/AppData/Local/Composer/vcs/git-ssh---git-github.com-substack-node-charm.
  git'...
  Host key verification failed.
  fatal: Could not read from remote repository.

  Please make sure you have the correct access rights
  and the repository exists.

update [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--lock] [--no-custom-installers] [--no-autoloader] [--no-scripts] [--no-progress] [--no-suggest] [--with-dependencies] [--with-all-dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [-i|--interactive] [--root-reqs] [--] [<packages>]...
XzAeRo commented 4 years ago

Host key verification failed.

That's your error. You have a problem with your local git hosts file.

Please check your git installation, and check this guide: https://docs.openbridge.com/en/articles/2524219-how-to-fix-host-key-verification-failed-ssh-error