Magento 2のローカル環境を作ろうと思ったけどサクっとは無理だった件…

Youtube見てたら、スモケさんがDo it! Blog it!言うので書くことにしました。笑
Screenshot 2019-07-01 at 15.36.05//embedr.flickr.com/assets/client-code.js
最終的なゴールとしてはMagento 2で出来ているショッピングサイトにAlgolia検索を入れたらこんなに爆速で素敵!的なデモをローカルに作ることです。

Local development | Magento 2 Developer Documentation

“magento 2 local”でググったら、Local development | Magento 2 Developer Documentationというサイトが一番上に引っかかってきたのでそれではじめていきます。
Dockerでも良かったんだけど、イメージ入れてハイいっちょ上がりって感じだとやった感でないので、ちゃんと(?)ローカルに環境作る感じで。
Screenshot 2019-07-01 at 15.39.04//embedr.flickr.com/assets/client-code.js

1. Prepare for local environment setup

まずはMagento Commerce Cloud accountのアカウントを作ってアクセストークンをダウンロード

2. Install Magento prerequisites

– Web server (local)
Nginx推奨とのこと。Magento CommerceはApacheもサポートしているけど、Magento Commerce CloudはNginxなんだそうで。Cloudとそうじゃないのは何か違うのか分かっていませんが…
ってことで $ brew install nginx
– PHP (local)
PHP 7.1.3+ or 7.2が推奨とのこと。ローカルみてみたら↓ちょっと古いw

$ php -version
PHP 7.1.23 (cli) (built: Feb 22 2019 22:19:32) ( NTS )

ってことでゴニョゴニョやって

$ php -version
PHP 7.3.6 (cli) (built: Jun 17 2019 08:40:34) ( NTS )

なんかMagento Cloud CLIを使うとデフォルトよりPHPのメモリ食うらしいので、php.iniのmemory_limitを128Mから2048Mへ。

 399 ; Maximum amount of memory a script may consume (128MB)
 400 ; http://php.net/memory-limit
 401 memory_limit = 2048M

とりあえずnginxのコンフィグからPHPのところをコメントアウトして↓こんなんで、localhost:8080したらそれっぽい画面出てきたらとりあえずいいのかな、、

$ brew services start nginx
==> Successfully started `nginx` (label: homebrew.mxcl.nginx)
$ brew services start php
==> Successfully started `php` (label: homebrew.mxcl.php)

– Database (local)
Magento CommerceはMariaDBを使ってるのでMariaDBが推奨っぽい。で、auto_increment_incrementの設定を変更する必要がある、と。
ってことで $ brew install mariadb でインストール。$ brew services start mariadb でデータベースのサービスを起動。(ちなみに止めるのは $ brew services stop mariadb)
rootでデータベースに接続
※ $ sudo mysql -u root ←のようにsudo付けないとrootでアレがアレ
データベース作ってmagentoへ。

create database magento;
use magento;

んで、ガッツリgrantしてあげようって感じですかね。

grant all privileges on  to ''@'localhost' identified by '';

そして、auto_increment_incrementの値を3にって書いてあるんだけど、homebrewで入れたMariaDBの設定ファイルの場所がよくわからず。笑
とりあえずPro planがどうのってなったらって話っぽいので端折ることにして…

For Pro plans, the Production environment has a three node infrastructure that uses auto-incrementing by 3 for all data IDs.

3. Enable SSH keys

– Magento Cloud CLI (local)
curlで取ってきたインストーラーをPHPで叩く感じ。
$ curl -sS https://accounts.magento.cloud/cli/installer | php
.bash_profileには書き込んでくれてるのでロードすればコマンド叩けるようになる。
$ source ~/.bash_profile
コマンド叩くと認証のプロセスが走って、ブラウザで認証するっていうのをYにすると
$ magento-cloud
ローカルの5000番ポートで何やら。
Screenshot 2019-07-01 at 16.29.05//embedr.flickr.com/assets/client-code.js
ローカル環境からMagento Commerce Cloud Git projectアクセスするのにSSHの鍵の設定が必要、とのことで。

$ magento-cloud ssh-key:add ~/.ssh/id_rsa.pub
Enter a name for the key [eiji.local]:
The SSH key id_rsa.pub has been successfully added to your Magento Cloud account.

4. Set up the Magento file system owner (optional)

ストレージが必要なのですかね、、nginxをインストールした場合は、セキュリティ上の理由でApacheも入れなきゃいけないって事?w
This step is optional if you installed nginx as your web server. The Magento file system owner provides root access and permissions, for security reasons on a hosted system. Apache installations require
よくわからないのでとりあえず次に進んでみます。。

5. Clone and branch the project

はい。まだプロジェクトは作ってない認識です。

$ magento-cloud project:list
You do not have any Magento Cloud projects yet.

とりあえずcomposerをHomebrewで入れて、、 $ brew install composer ってなんか手順おかしいような気がするけど…笑
↓叩いたら認証が、、って言われて、

composer create-project --repository=https://repo.magento.com/ magento/project-community-edition /usr/local/var/www/magento2

色々ググってたら、コレ用のアクセスキーが必要って言われて、頑張ったんだけど、↓に何を入れたら良いのか分からず…mm
Screenshot 2019-07-01 at 17.16.46//embedr.flickr.com/assets/client-code.js
screen nameを入れるのか。。。難易度高い。。。笑
My_Access_Keys//embedr.flickr.com/assets/client-code.js
そして、Public KeyをUsernameに入れて、Private KeyをPasswordに入れるのは高度な情報セキュリティ的なアレなの??
色々謎だけど、とにかくプロジェクトは作れたみたいです。。あー、–no-installにしちゃったから諸々落としてくれないのか。
magento2_—_-bash_—_100×30_and_新規投稿を追加_‹_shinodogg_com_—_WordPress//embedr.flickr.com/assets/client-code.js
ってことで–no-installを除いてもう一回コマンド叩いて、、なんか言われております。。。笑

Your requirements could not be resolved to an installable set of packages.
  Problem 1
    - Installation request for magento/product-community-edition 2.3.2 -> satisfiable by magento/product-community-edition[2.3.2].
    - magento/product-community-edition 2.3.2 requires php ~7.1.3||~7.2.0 -> your PHP version (7.3.6) does not satisfy that requirement.
  Problem 2
    - Installation request for magento/magento2-functional-testing-framework ~2.3.14 -> satisfiable by magento/magento2-functional-testing-framework[2.3.14].
    - magento/magento2-functional-testing-framework 2.3.14 requires php 7.0.2|7.0.4|~7.0.6|~7.1.0|~7.2.0 -> your PHP version (7.3.6) does not satisfy that requirement.
  Problem 3
    - friendsofphp/php-cs-fixer v2.13.3 requires php ^5.6 || >=7.0  your PHP version (7.3.6) does not satisfy that requirement.
    - friendsofphp/php-cs-fixer v2.13.2 requires php ^5.6 || >=7.0  your PHP version (7.3.6) does not satisfy that requirement.
    - friendsofphp/php-cs-fixer v2.13.1 requires php ^5.6 || >=7.0  your PHP version (7.3.6) does not satisfy that requirement.
    - friendsofphp/php-cs-fixer v2.13.0 requires php ^5.6 || >=7.0  your PHP version (7.3.6) does not satisfy that requirement.
    - Installation request for friendsofphp/php-cs-fixer ~2.13.0 -> satisfiable by friendsofphp/php-cs-fixer[v2.13.0, v2.13.1, v2.13.2, v2.13.3].

PHPのバージョン7.2を入れて.bash_profileでsourceして…w
なんだか分からないけど、めーーっちゃいっぱい入ったっぽい…。。

$ composer create-project --repository=https://repo.magento.com/ magento/project-community-edition /usr/local/var/www/magento2
Installing magento/project-community-edition (2.3.2)
  - Installing magento/project-community-edition (2.3.2): Loading from cache
Created project in /usr/local/var/www/magento2
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 422 installs, 0 updates, 0 removals
  - Installing magento/magento-composer-installer (0.1.13): Downloading (100%)
  - Installing psr/container (1.0.0): Downloading (100%)
  - Installing container-interop/container-interop (1.2.0): Downloading (100%)
  - Installing zendframework/zend-stdlib (2.7.7): Downloading (100%)
  - Installing zendframework/zend-hydrator (1.1.0): Downloading (100%)
  - Installing zendframework/zend-validator (2.11.1): Downloading (100%)
  - Installing zendframework/zend-escaper (2.6.0): Downloading (100%)
  - Installing zendframework/zend-uri (2.7.0): Downloading (100%)
  - Installing zendframework/zend-loader (2.6.0): Downloading (100%)
  - Installing zendframework/zend-http (2.8.4): Downloading (100%)
  - Installing psr/http-message (1.0.1): Downloading (100%)
  - Installing zendframework/zend-diactoros (1.8.6): Downloading (100%)
  - Installing zendframework/zend-psr7bridge (0.2.2): Downloading (100%)
  - Installing zendframework/zend-servicemanager (2.7.11): Downloading (100%)
  - Installing zendframework/zend-filter (2.9.1): Downloading (100%)
  - Installing zendframework/zend-inputfilter (2.10.0): Downloading (100%)
  - Installing zendframework/zend-form (2.13.0): Downloading (100%)
  - Installing zendframework/zend-eventmanager (2.6.4): Downloading (100%)
  - Installing zendframework/zend-console (2.7.0): Downloading (100%)
  - Installing zendframework/zend-mvc (2.7.15): Downloading (100%)
  - Installing zendframework/zend-math (2.7.1): Downloading (100%)
  - Installing zendframework/zend-crypt (2.6.0): Downloading (100%)
  - Installing tedivm/jshrink (v1.3.3): Downloading (100%)
  - Installing symfony/polyfill-mbstring (v1.11.0): Downloading (100%)
  - Installing psr/log (1.1.0): Downloading (100%)
  - Installing oyejorge/less.php (v1.7.0.14): Downloading (100%)
  - Installing monolog/monolog (1.24.0): Downloading (100%)
  - Installing symfony/process (v4.1.12): Downloading (100%)
  - Installing symfony/finder (v4.3.2): Downloading (100%)
  - Installing symfony/polyfill-ctype (v1.11.0): Downloading (100%)
  - Installing symfony/filesystem (v4.3.2): Downloading (100%)
  - Installing symfony/console (v4.1.12): Downloading (100%)
  - Installing seld/phar-utils (1.0.1): Downloading (100%)
  - Installing seld/jsonlint (1.7.1): Downloading (100%)
  - Installing justinrainbow/json-schema (5.2.8): Downloading (100%)
  - Installing composer/xdebug-handler (1.3.3): Downloading (100%)
  - Installing composer/spdx-licenses (1.5.1): Downloading (100%)
  - Installing composer/semver (1.5.0): Downloading (100%)
  - Installing composer/ca-bundle (1.1.4): Downloading (100%)
  - Installing composer/composer (1.8.6): Downloading (100%)
  - Installing colinmollenhour/credis (1.10.0): Downloading (100%)
  - Installing zendframework/zend-code (3.3.1): Downloading (100%)
  - Installing magento/zendframework1 (1.14.1): Downloading (100%)
  - Installing colinmollenhour/php-redis-session-abstract (v1.4.1): Downloading (100%)
  - Installing magento/framework (102.0.2): Downloading (100%)
  - Installing magento/inventory-composer-installer (1.1.0): Downloading (100%)
  - Installing google/recaptcha (1.2.2): Downloading (100%)
  - Installing symfony/service-contracts (v1.1.5): Downloading (100%)
  - Installing zendframework/zend-session (2.8.5): Downloading (100%)
  - Installing paragonie/random_compat (v9.99.99): Downloading (100%)
  - Installing zendframework/zend-captcha (2.8.0): Downloading (100%)
  - Installing zendframework/zend-db (2.10.0): Downloading (100%)
  - Installing magento/module-store (101.0.2): Downloading (100%)
  - Installing magento/module-ui (101.1.2): Downloading (100%)
  - Installing magento/module-user (101.1.2): Downloading (100%)
  - Installing magento/module-config (101.1.2): Downloading (100%)
  - Installing magento/module-widget (101.1.2): Downloading (100%)
  - Installing magento/module-variable (100.3.2): Downloading (100%)
  - Installing magento/module-media-storage (100.3.2): Downloading (100%)
  - Installing magento/module-theme (101.0.2): Downloading (100%)
  - Installing magento/module-backend (101.0.2): Downloading (100%)
  - Installing magento/module-translation (100.3.2): Downloading (100%)
  - Installing magento/module-developer (100.3.2): Downloading (100%)
  - Installing zendframework/zend-di (2.6.1): Downloading (100%)
  - Installing magento/module-security (100.3.2): Downloading (100%)
  - Installing magento/module-wishlist (101.1.2): Downloading (100%)
  - Installing magento/module-captcha (100.3.2): Downloading (100%)
  - Installing magento/module-customer (102.0.2): Downloading (100%)
  - Installing magento/module-sales (102.0.2): Downloading (100%)
  - Installing magento/module-require-js (100.3.2): Downloading (100%)
  - Installing magento/module-url-rewrite (101.1.2): Downloading (100%)
  - Installing magento/module-cms-url-rewrite (100.3.2): Downloading (100%)
  - Installing magento/module-authorization (100.3.2): Downloading (100%)
  - Installing magento/module-cms (103.0.2): Downloading (100%)
  - Installing magento/module-email (101.0.2): Downloading (100%)
  - Installing magento/module-catalog (103.0.2): Downloading (100%)
  - Installing magento/module-tax (100.3.2): Downloading (100%)
  - Installing magento/module-shipping (100.3.2): Downloading (100%)
  - Installing magento/module-sales-sequence (100.3.2): Downloading (100%)
  - Installing magento/module-newsletter (100.3.2): Downloading (100%)
  - Installing magento/module-quote (101.1.2): Downloading (100%)
  - Installing magento/module-payment (100.3.2): Downloading (100%)
  - Installing magento/module-directory (100.3.2): Downloading (100%)
  - Installing magento/module-checkout (100.3.2): Downloading (100%)
  - Installing magento/module-sales-rule (101.1.2): Downloading (100%)
  - Installing magento/module-eav (102.0.2): Downloading (100%)
  - Installing magento/module-rule (100.3.2): Downloading (100%)
  - Installing magento/module-reports (100.3.2): Downloading (100%)
  - Installing magento/module-review (100.3.2): Downloading (100%)
  - Installing magento/module-page-cache (100.3.2): Downloading (100%)
  - Installing magento/module-downloadable (100.3.2): Downloading (100%)
  - Installing magento/module-gift-message (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-inventory (100.3.2): Downloading (100%)
  - Installing magento/module-msrp (100.3.2): Downloading (100%)
  - Installing magento/module-grouped-product (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-rule (101.1.2): Downloading (100%)
  - Installing magento/module-product-alert (100.3.2): Downloading (100%)
  - Installing magento/module-indexer (100.3.2): Downloading (100%)
  - Installing magento/module-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-url-rewrite (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-import-export (101.0.2): Downloading (100%)
  - Installing magento/module-integration (100.3.2): Downloading (100%)
  - Installing magento/module-bundle (100.3.2): Downloading (100%)
  - Installing magento/module-contact (100.3.2): Downloading (100%)
  - Installing magento/framework-bulk (100.3.2): Downloading (100%)
  - Installing magento/module-asynchronous-operations (100.3.2): Downloading (100%)
  - Installing magento/module-rss (100.3.2): Downloading (100%)
  - Installing magento/module-cron (100.3.2): Downloading (100%)
  - Installing magento/module-backup (100.3.2): Downloading (100%)
  - Installing magento/module-deploy (100.3.2): Downloading (100%)
  - Installing msp/recaptcha (2.1.2): Downloading (100%)
  - Installing yubico/u2flib-server (1.0.2): Downloading (100%)
  - Installing donatj/phpuseragentparser (v0.13.0): Downloading (100%)
  - Installing myclabs/php-enum (1.7.1): Downloading (100%)
  - Installing bacon/bacon-qr-code (1.0.3): Downloading (100%)
  - Installing symfony/inflector (v4.3.2): Downloading (100%)
  - Installing symfony/property-access (v4.3.2): Downloading (100%)
  - Installing symfony/polyfill-php70 (v1.11.0): Downloading (100%)
  - Installing khanamiryan/qrcode-detector-decoder (1.0.2): Downloading (100%)
  - Installing symfony/options-resolver (v4.3.2): Downloading (100%)
  - Installing endroid/qr-code (2.5.0): Downloading (100%)
  - Installing symfony/polyfill-util (v1.11.0): Downloading (100%)
  - Installing symfony/polyfill-php56 (v1.11.0): Downloading (100%)
  - Installing beberlei/assert (v2.9.9): Downloading (100%)
  - Installing paragonie/constant_time_encoding (v2.2.3): Downloading (100%)
  - Installing spomky-labs/otphp (v8.3.3): Downloading (100%)
  - Installing christian-riesen/base32 (1.3.2): Downloading (100%)
  - Installing msp/twofactorauth (3.1.1): Downloading (100%)
  - Installing magento/module-paypal-captcha (100.3.0): Downloading (100%)
  - Installing magento/module-paypal-recaptcha (1.0.0): Downloading (100%)
  - Installing magento/module-inventory-api (1.0.5): Downloading (100%)
    ...Module Magento_InventoryApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryApi module
  - Installing magento/module-inventory-sales-api (1.0.5): Downloading (100%)
    ...Module Magento_InventorySalesApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySalesApi module
  - Installing magento/module-inventory-source-selection-api (1.2.0): Downloading (100%)
    ...Module Magento_InventorySourceSelectionApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySourceSelectionApi module
  - Installing magento/module-inventory-source-selection (1.0.5): Downloading (100%)
    ...Module Magento_InventorySourceSelection recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySourceSelection module
  - Installing magento/module-inventory-configuration-api (1.0.5): Downloading (100%)
    ...Module Magento_InventoryConfigurationApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryConfigurationApi module
  - Installing magento/module-inventory-source-deduction-api (1.0.5): Downloading (100%)
    ...Module Magento_InventorySourceDeductionApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySourceDeductionApi module
  - Installing magento/module-inventory-shipping-admin-ui (1.0.5): Downloading (100%)
    ...Module Magento_InventoryShippingAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryShippingAdminUi module
  - Installing magento/module-inventory-catalog-api (1.1.0): Downloading (100%)
    ...Module Magento_InventoryCatalogApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryCatalogApi module
  - Installing magento/module-inventory-shipping (1.0.5): Downloading (100%)
    ...Module Magento_InventoryShipping recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryShipping module
  - Installing magento/module-inventory-setup-fixture-generator (1.0.1):Downloading (100%)         )
    ...Module Magento_InventorySetupFixtureGenerator recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySetupFixtureGenerator module
  - Installing magento/module-inventory-sales-frontend-ui (1.0.4): Downloading (100%)
    ...Module Magento_InventorySalesFrontendUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySalesFrontendUi module
  - Installing magento/module-inventory-admin-ui (1.0.5): Downloading (100%)
    ...Module Magento_InventoryAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryAdminUi module
  - Installing magento/module-inventory-sales-admin-ui (1.0.5): Downloading (100%)
    ...Module Magento_InventorySalesAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySalesAdminUi module
  - Installing magento/module-sales-inventory (100.3.2): Downloading (100%)
  - Installing magento/module-inventory-reservations-api (1.0.4): Downloading (100%)
    ...Module Magento_InventoryReservationsApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryReservationsApi module
  - Installing magento/module-inventory (1.0.5): Downloading (100%)
    ...Module Magento_Inventory recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_Inventory module
  - Installing magento/module-inventory-sales (1.0.5): Downloading (100%)
    ...Module Magento_InventorySales recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventorySales module
  - Installing magento/module-inventory-reservations (1.0.5): Downloading (100%)
    ...Module Magento_InventoryReservations recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryReservations module
  - Installing magento/module-inventory-reservation-cli (1.0.0): Downloading (100%)
    ...Module Magento_InventoryReservationCli recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryReservationCli module
  - Installing magento/module-inventory-product-alert (1.0.5): Downloading (100%)
    ...Module Magento_InventoryProductAlert recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryProductAlert module
  - Installing magento/module-inventory-multi-dimensional-indexer-api (1.0.5): Downloading (100%)       ...Module Magento_InventoryMultiDimensionalIndexerApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryMultiDimensionalIndexerApi module
  - Installing magento/module-inventory-low-quantity-notification-api (1.0.4): Downloading (100%)       ...Module Magento_InventoryLowQuantityNotificationApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryLowQuantityNotificationApi module
  - Installing magento/module-inventory-low-quantity-notification (1.0.5): Downloading (100%)           ...Module Magento_InventoryLowQuantityNotification recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryLowQuantityNotification module
  - Installing magento/module-inventory-low-quantity-notification-admin-ui (1.0.5): Downloading (100%)
    ...Module Magento_InventoryLowQuantityNotificationAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryLowQuantityNotificationAdminUi module
  - Installing magento/module-inventory-indexer (1.0.5): Downloading (100%)
    ...Module Magento_InventoryIndexer recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryIndexer module
  - Installing magento/module-inventory-import-export (1.0.5): Downloading (100%)
    ...Module Magento_InventoryImportExport recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryImportExport module
  - Installing magento/module-inventory-grouped-product-indexer (1.0.4):Downloading (100%)         )
    ...Module Magento_InventoryGroupedProductIndexer recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryGroupedProductIndexer module
  - Installing magento/module-inventory-catalog-admin-ui (1.0.5): Downloading (100%)
    ...Module Magento_InventoryCatalogAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryCatalogAdminUi module
  - Installing magento/module-inventory-grouped-product-admin-ui (1.0.5): Downloading (100%)            ...Module Magento_InventoryGroupedProductAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryGroupedProductAdminUi module
  - Installing magento/module-inventory-grouped-product (1.0.4): Downloading (100%)
    ...Module Magento_InventoryGroupedProduct recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryGroupedProduct module
  - Installing magento/module-inventory-configuration (1.0.5): Downloading (100%)
    ...Module Magento_InventoryConfiguration recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryConfiguration module
  - Installing magento/module-inventory-catalog (1.0.5): Downloading (100%)
    ...Module Magento_InventoryCatalog recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryCatalog module
  - Installing magento/module-inventory-graph-ql (1.0.0): Downloading (100%)
    ...Module Magento_InventoryGraphQl recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryGraphQl module
  - Installing magento/module-inventory-export-stock-api (1.0.0): Downloading (100%)
    ...Module Magento_InventoryExportStockApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryExportStockApi module
  - Installing magento/module-configurable-product (100.3.2): Downloading (100%)
  - Installing magento/module-inventory-export-stock (1.0.0): Downloading (100%)
    ...Module Magento_InventoryExportStock recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryExportStock module
  - Installing react/promise (v2.7.1): Downloading (100%)
  - Installing guzzlehttp/streams (3.0.0): Downloading (100%)
  - Installing guzzlehttp/ringphp (1.1.1): Downloading (100%)
  - Installing elasticsearch/elasticsearch (v6.7.1): Downloading (100%)
  - Installing magento/module-search (101.0.2): Downloading (100%)
  - Installing magento/module-catalog-search (101.0.2): Downloading (100%)
  - Installing magento/module-advanced-search (100.3.2): Downloading (100%)
  - Installing magento/module-elasticsearch (100.3.2): Downloading (100%)
  - Installing magento/module-inventory-elasticsearch (1.0.1): Downloading (100%)
    ...Module Magento_InventoryElasticsearch recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryElasticsearch module
  - Installing magento/module-inventory-distance-based-source-selection-api (1.0.1): Downloading (100%)
    ...Module Magento_InventoryDistanceBasedSourceSelectionApi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryDistanceBasedSourceSelectionApi module
  - Installing magento/module-inventory-distance-based-source-selection-admin-ui (1.0.1): Downloading (100%)
    ...Module Magento_InventoryDistanceBasedSourceSelectionAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryDistanceBasedSourceSelectionAdminUi module
  - Installing magento/module-inventory-distance-based-source-selection (1.0.1): Downloading (100%)     ...Module Magento_InventoryDistanceBasedSourceSelection recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryDistanceBasedSourceSelection module
  - Installing magento/module-inventory-configurable-product-indexer (1.0.4): Downloading (100%)        ...Module Magento_InventoryConfigurableProductIndexer recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryConfigurableProductIndexer module
  - Installing magento/module-inventory-configurable-product-admin-ui (1.0.5): Downloading (100%)       ...Module Magento_InventoryConfigurableProductAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryConfigurableProductAdminUi module
  - Installing magento/module-inventory-configurable-product (1.0.5): Downloading (100%)
    ...Module Magento_InventoryConfigurableProduct recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryConfigurableProduct module
  - Installing magento/module-inventory-catalog-search (1.0.5): Downloading (100%)
    ...Module Magento_InventoryCatalogSearch recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryCatalogSearch module
  - Installing magento/module-inventory-cache (1.0.4): Downloading (100%)
    ...Module Magento_InventoryCache recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryCache module
  - Installing magento/module-inventory-bundle-product-admin-ui (1.0.4):Downloading (100%)         )
    ...Module Magento_InventoryBundleProductAdminUi recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryBundleProductAdminUi module
  - Installing magento/module-inventory-bundle-product (1.0.4): Downloading (100%)
    ...Module Magento_InventoryBundleProduct recognized as part of Magento Multi Source Inventory implementation
    ...No special rule applied for Magento_InventoryBundleProduct module
  - Installing magento/inventory-composer-metapackage (1.1.2)
  - Installing vertex/sdk (1.1.0): Downloading (100%)
  - Installing vertex/module-tax (3.1.0): Downloading (100%)
  - Installing vertex/product-magento-module (3.1.0)
  - Installing zendframework/zend-barcode (2.7.0): Downloading (100%)
  - Installing magento/module-multishipping (100.3.2): Downloading (100%)
  - Installing temando/module-shipping-m2 (1.5.3): Downloading (100%)
  - Installing ramsey/uuid (3.8.0): Downloading (100%)
  - Installing guzzlehttp/promises (v1.3.1): Downloading (100%)
  - Installing ralouphie/getallheaders (3.0.3): Downloading (100%)
  - Installing guzzlehttp/psr7 (1.6.0): Downloading (100%)
  - Installing guzzlehttp/guzzle (6.3.3): Downloading (100%)
  - Installing klarna/module-core (5.1.0): Downloading (100%)
  - Installing magento/module-vault (101.1.2): Downloading (100%)
  - Installing magento/module-instant-purchase (100.3.2): Downloading (100%)
  - Installing magento/module-paypal (100.3.2): Downloading (100%)
  - Installing klarna/module-ordermanagement (5.0.3): Downloading (100%)
  - Installing klarna/module-kp (6.1.1): Downloading (100%)
  - Installing klarna/m2-payments (7.1.1)
  - Installing magento/module-send-friend (100.3.2): Downloading (100%)
  - Installing dotmailer/dotmailer-magento2-extension (3.1.2): Downloading (100%)
  - Installing magento/module-checkout-agreements (100.3.2): Downloading (100%)
  - Installing amzn/amazon-pay-sdk-php (3.4.1): Downloading (100%)
  - Installing amzn/amazon-pay-and-login-with-amazon-core-module (3.2.9): Downloading (100%)          - Installing amzn/login-with-amazon-module (3.2.9): Downloading (100%)
  - Installing amzn/amazon-pay-module (3.2.9): Downloading (100%)
  - Installing amzn/amazon-pay-and-login-magento-2-module (3.2.9)
  - Installing magento/module-tinymce-3 (100.3.2): Downloading (100%)
  - Installing magento/framework-message-queue (100.3.2): Downloading (100%)
  - Installing php-amqplib/php-amqplib (v2.7.3): Downloading (100%)
  - Installing magento/framework-amqp (100.3.2): Downloading (100%)
  - Installing magento/language-zh_hans_cn (100.3.2): Downloading (100%)
  - Installing magento/language-pt_br (100.3.2): Downloading (100%)
  - Installing magento/language-nl_nl (100.3.2): Downloading (100%)
  - Installing magento/language-fr_fr (100.3.2): Downloading (100%)
  - Installing magento/language-es_es (100.3.2): Downloading (100%)
  - Installing magento/language-en_us (100.3.2): Downloading (100%)
  - Installing magento/language-de_de (100.3.2): Downloading (100%)
  - Installing magento/theme-frontend-blank (100.3.2): Downloading (100%)
  - Installing magento/theme-frontend-luma (100.3.2): Downloading (100%)
  - Installing magento/theme-adminhtml-backend (100.3.2): Downloading (100%)
  - Installing magento/module-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-wishlist-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-eav-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-wishlist-graph-ql (100.3.1): Downloading (100%)
  - Installing magento/module-weee (100.3.2): Downloading (100%)
  - Installing magento/module-webapi (100.3.2): Downloading (100%)
  - Installing magento/module-webapi-security (100.3.2): Downloading (100%)
  - Installing magento/module-webapi-async (100.3.2): Downloading (100%)
  - Installing magento/module-version (100.3.2): Downloading (100%)
  - Installing magento/module-customer-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-vault-graph-ql (100.3.0): Downloading (100%)
  - Installing magento/module-usps (100.3.2): Downloading (100%)
  - Installing magento/module-ups (100.3.2): Downloading (100%)
  - Installing magento/module-theme-graph-ql (100.3.1): Downloading (100%)
  - Installing magento/module-tax-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-swatches-layered-navigation (100.3.2): Downloading (100%)
  - Installing magento/module-swatches (100.3.2): Downloading (100%)
  - Installing magento/module-swagger (100.3.2): Downloading (100%)
  - Installing magento/module-swagger-webapi-async (100.3.2): Downloading (100%)
  - Installing magento/module-swagger-webapi (100.3.2): Downloading (100%)
  - Installing magento/module-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-store-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-robots (101.0.2): Downloading (100%)
  - Installing magento/module-sitemap (100.3.2): Downloading (100%)
  - Installing magento/module-signifyd (100.3.2): Downloading (100%)
  - Installing magento/module-send-friend-graph-ql (100.3.1): Downloading (100%)
  - Installing magento/module-sample-data (100.3.2): Downloading (100%)
  - Installing magento/module-sales-graph-ql (100.3.1): Downloading (100%)
  - Installing magento/module-sales-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-review-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-release-notification (100.3.2): Downloading (100%)
  - Installing magento/module-quote-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-quote-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-product-video (100.3.2): Downloading (100%)
  - Installing magento/module-persistent (100.3.2): Downloading (100%)
  - Installing magento/module-offline-shipping (100.3.2): Downloading (100%)
  - Installing magento/module-offline-payments (100.3.2): Downloading (100%)
  - Installing magento/module-new-relic-reporting (100.3.2): Downloading (100%)
  - Installing magento/module-mysql-mq (100.3.2): Downloading (100%)
  - Installing magento/module-msrp-grouped-product (100.3.1): Downloading (100%)
  - Installing magento/module-msrp-configurable-product (100.3.1): Downloading (100%)
  - Installing magento/module-message-queue (100.3.2): Downloading (100%)
  - Installing magento/module-layered-navigation (100.3.2): Downloading (100%)
  - Installing magento/module-grouped-product-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-grouped-catalog-inventory (100.3.1): Downloading (100%)
  - Installing magento/module-grouped-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-cms-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-weee-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-url-rewrite-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-cms-url-rewrite-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-tax-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-swatches-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-configurable-product-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-url-rewrite-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-graph-ql-cache (100.3.0): Downloading (100%)
  - Installing magento/module-cookie (100.3.2): Downloading (100%)
  - Installing magento/module-google-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-google-optimizer (100.3.2): Downloading (100%)
  - Installing magento/module-google-adwords (100.3.2): Downloading (100%)
  - Installing magento/module-fedex (100.3.2): Downloading (100%)
  - Installing magento/module-encryption-key (100.3.2): Downloading (100%)
  - Installing magento/module-elasticsearch-6 (100.3.1): Downloading (100%)
  - Installing magento/module-downloadable-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-downloadable-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-directory-graph-ql (100.3.1): Downloading (100%)
  - Installing magento/module-dhl (100.3.2): Downloading (100%)
  - Installing magento/module-customer-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-customer-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-currency-symbol (100.3.2): Downloading (100%)
  - Installing magento/module-configurable-product-sales (100.3.2): Downloading (100%)
  - Installing magento/module-configurable-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-widget (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-rule-configurable (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-inventory-graph-ql (100.3.2): Downloading (100%)
  - Installing magento/module-catalog-analytics (100.3.2): Downloading (100%)
  - Installing magento/module-cache-invalidate (100.3.2): Downloading (100%)
  - Installing magento/module-bundle-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-bundle-graph-ql (100.3.2): Downloading (100%)
  - Installing braintree/braintree_php (3.35.0): Downloading (100%)
  - Installing magento/module-braintree (100.3.2): Downloading (100%)
  - Installing magento/module-authorizenet-acceptjs (100.3.1): Downloading (100%)
  - Installing magento/module-authorizenet (100.3.2): Downloading (100%)
  - Installing magento/module-amqp (100.3.2): Downloading (100%)
  - Installing magento/module-advanced-pricing-import-export (100.3.2): Downloading (100%)
  - Installing magento/module-admin-notification (100.3.2): Downloading (100%)
  - Installing magento/module-marketplace (100.3.2): Downloading (100%)
  - Installing zendframework/zend-json (2.6.1): Downloading (100%)
  - Installing zendframework/zend-view (2.10.1): Downloading (100%)
  - Installing zendframework/zend-text (2.7.0): Downloading (100%)
  - Installing zendframework/zend-server (2.8.0): Downloading (100%)
  - Installing zendframework/zend-soap (2.8.0): Downloading (100%)
  - Installing zendframework/zend-serializer (2.9.0): Downloading (100%)
  - Installing zendframework/zend-config (2.6.0): Downloading (100%)
  - Installing zendframework/zend-modulemanager (2.8.2): Downloading (100%)
  - Installing zendframework/zend-mime (2.7.1): Downloading (100%)
  - Installing true/punycode (v2.1.1): Downloading (100%)
  - Installing zendframework/zend-mail (2.10.0): Downloading (100%)
  - Installing zendframework/zend-log (2.10.0): Downloading (100%)
  - Installing zendframework/zend-i18n (2.9.0): Downloading (100%)
  - Installing zendframework/zend-feed (2.10.3): Downloading (100%)
  - Installing webonyx/graphql-php (v0.12.6): Downloading (100%)
  - Installing tubalmartin/cssmin (v4.1.1): Downloading (100%)
  - Installing symfony/event-dispatcher (v4.1.12): Downloading (100%)
  - Installing phpseclib/phpseclib (2.0.20): Downloading (100%)
  - Installing phpseclib/mcrypt_compat (1.0.8): Downloading (100%)
  - Installing symfony/css-selector (v4.3.2): Downloading (100%)
  - Installing pelago/emogrifier (v2.1.1): Downloading (100%)
  - Installing paragonie/sodium_compat (v1.10.0): Downloading (100%)
  - Installing magento/composer (1.4.0): Downloading (100%)
  - Installing colinmollenhour/cache-backend-redis (1.10.6): Downloading (100%)
  - Installing colinmollenhour/cache-backend-file (v1.4.5): Downloading (100%)
  - Installing magento/magento2-base (2.3.2): Downloading (100%)
  - Installing magento/product-community-edition (2.3.2)
  - Installing vlucas/phpdotenv (v2.6.1): Downloading (100%)
  - Installing mustache/mustache (v2.12.0): Downloading (100%)
  - Installing fzaninotto/faker (v1.8.0): Downloading (100%)
  - Installing flow/jsonpath (0.4.0): Downloading (100%)
  - Installing phpoption/phpoption (1.5.0): Downloading (100%)
  - Installing symfony/yaml (v3.4.29): Downloading (100%)
  - Installing doctrine/lexer (1.0.2): Downloading (100%)
  - Installing doctrine/annotations (v1.6.1): Downloading (100%)
  - Installing doctrine/collections (v1.6.2): Downloading (100%)
  - Installing doctrine/instantiator (1.2.0): Downloading (100%)
  - Installing phpcollection/phpcollection (0.5.0): Downloading (100%)
  - Installing jms/parser-lib (1.0.0): Downloading (100%)
  - Installing jms/metadata (1.7.0): Downloading (100%)
  - Installing jms/serializer (1.14.0): Downloading (100%)
  - Installing epfremme/swagger-php (v2.0.0): Downloading (100%)
  - Installing dflydev/dot-access-data (v1.1.0): Downloading (100%)
  - Installing grasmash/yaml-expander (1.4.0): Downloading (100%)
  - Installing consolidation/self-update (1.1.5): Downloading (100%)
  - Installing consolidation/output-formatters (3.5.0): Downloading (100%)
  - Installing consolidation/annotated-command (2.12.0): Downloading (100%)
  - Installing grasmash/expander (1.0.0): Downloading (100%)
  - Installing consolidation/config (1.2.1): Downloading (100%)
  - Installing consolidation/log (1.1.1): Downloading (100%)
  - Installing league/container (2.4.1): Downloading (100%)
  - Installing consolidation/robo (1.4.9): Downloading (100%)
  - Installing webmozart/assert (1.4.0): Downloading (100%)
  - Installing phpdocumentor/reflection-common (1.0.1): Downloading (100%)
  - Installing phpdocumentor/type-resolver (0.4.0): Downloading (100%)
  - Installing phpdocumentor/reflection-docblock (4.3.1): Downloading (100%)
  - Installing sebastian/recursion-context (3.0.0): Downloading (100%)
  - Installing sebastian/exporter (3.1.0): Downloading (100%)
  - Installing theseer/tokenizer (1.1.3): Downloading (100%)
  - Installing sebastian/version (2.0.1): Downloading (100%)
  - Installing sebastian/code-unit-reverse-lookup (1.0.1): Downloading (100%)
  - Installing phpunit/php-text-template (1.2.1): Downloading (100%)
  - Installing sebastian/environment (3.1.0): Downloading (100%)
  - Installing phpunit/php-file-iterator (1.4.5): Downloading (100%)
  - Installing sebastian/diff (2.0.1): Downloading (100%)
  - Installing sebastian/comparator (2.1.3): Downloading (100%)
  - Installing phpunit/php-token-stream (2.0.2): Downloading (100%)
  - Installing phpunit/php-code-coverage (5.3.2): Downloading (100%)
  - Installing sebastian/resource-operations (1.0.0): Downloading (100%)
  - Installing sebastian/object-reflector (1.1.1): Downloading (100%)
  - Installing sebastian/object-enumerator (3.0.3): Downloading (100%)
  - Installing sebastian/global-state (2.0.0): Downloading (100%)
  - Installing phpunit/phpunit-mock-objects (5.0.10): Downloading (100%)
  - Installing phpunit/php-timer (1.0.9): Downloading (100%)
  - Installing phpspec/prophecy (1.8.1): Downloading (100%)
  - Installing phar-io/version (1.0.1): Downloading (100%)
  - Installing phar-io/manifest (1.0.1): Downloading (100%)
  - Installing myclabs/deep-copy (1.9.1): Downloading (100%)
  - Installing phpunit/phpunit (6.5.14): Downloading (100%)
  - Installing codeception/phpunit-wrapper (6.6.1): Downloading (100%)
  - Installing codeception/stub (2.1.0): Downloading (100%)
  - Installing behat/gherkin (v4.6.0): Downloading (100%)
  - Installing symfony/dom-crawler (v4.3.2): Downloading (100%)
  - Installing symfony/browser-kit (v4.3.2): Downloading (100%)
  - Installing facebook/webdriver (1.7.1): Downloading (100%)
  - Installing codeception/codeception (2.4.5): Downloading (100%)
  - Installing symfony/polyfill-php72 (v1.11.0): Downloading (100%)
  - Installing symfony/polyfill-intl-idn (v1.11.0): Downloading (100%)
  - Installing symfony/mime (v4.3.2): Downloading (100%)
  - Installing symfony/http-foundation (v4.3.2): Downloading (100%)
  - Installing moontoast/math (1.1.2): Downloading (100%)
  - Installing allure-framework/allure-php-api (1.1.4): Downloading (100%)
  - Installing allure-framework/allure-codeception (1.3.0): Downloading (100%)
  - Installing magento/magento2-functional-testing-framework (2.3.14): Downloading (100%)
  - Installing mikey179/vfsstream (v1.6.6): Downloading (100%)
  - Installing allure-framework/allure-phpunit (1.2.3): Downloading (100%)
  - Installing symfony/stopwatch (v4.3.2): Downloading (100%)
  - Installing php-cs-fixer/diff (v1.3.0): Downloading (100%)
  - Installing friendsofphp/php-cs-fixer (v2.13.3): Downloading (100%)
  - Installing theseer/fdomdocument (1.6.6): Downloading (100%)
  - Installing sebastian/finder-facade (1.2.2): Downloading (100%)
  - Installing sebastian/phpcpd (3.0.1): Downloading (100%)
  - Installing lusitanian/oauth (v0.8.11): Downloading (100%)
  - Installing squizlabs/php_codesniffer (3.3.1): Downloading (100%)
  - Installing magento/magento-coding-standard (1.0.2): Downloading (100%)
  - Installing symfony/dependency-injection (v4.3.2): Downloading (100%)
  - Installing symfony/config (v4.3.2): Downloading (100%)
  - Installing pdepend/pdepend (2.5.2): Downloading (100%)
  - Installing phpmd/phpmd (2.6.0): Downloading (100%)
zendframework/zend-validator suggests installing zendframework/zend-i18n-resources (Translations of validator messages)
zendframework/zend-http suggests installing paragonie/certainty (For automated management of cacert.pem)
zendframework/zend-servicemanager suggests installing ocramius/proxy-manager (ProxyManager 0.5.* to handle lazy initialization of services)
zendframework/zend-filter suggests installing psr/http-factory-implementation (psr/http-factory-implementation, for creating file upload instances when consuming PSR-7 in file upload filters)
zendframework/zend-form suggests installing zendframework/zendservice-recaptcha (in order to use the ReCaptcha form element)
zendframework/zend-mvc suggests installing zendframework/zend-authentication (ZendAuthentication component for Identity plugin)
zendframework/zend-mvc suggests installing zendframework/zend-servicemanager-di (^1.0.1, if using zend-servicemanager v3 and requiring the zend-di integration)
zendframework/zend-math suggests installing ircmaxell/random-lib (Fallback random byte generator for ZendMathRand if Mcrypt extensions is unavailable)
zendframework/zend-crypt suggests installing ext-mcrypt (Required for most features of ZendCrypt)
monolog/monolog suggests installing graylog2/gelf-php (Allow sending log messages to a GrayLog2 server)
monolog/monolog suggests installing sentry/sentry (Allow sending log messages to a Sentry server)
monolog/monolog suggests installing doctrine/couchdb (Allow sending log messages to a CouchDB server)
monolog/monolog suggests installing ruflin/elastica (Allow sending log messages to an Elastic Search server)
monolog/monolog suggests installing ext-amqp (Allow sending log messages to an AMQP server (1.0+ required))
monolog/monolog suggests installing ext-mongo (Allow sending log messages to a MongoDB server)
monolog/monolog suggests installing mongodb/mongodb (Allow sending log messages to a MongoDB server via PHP Driver)
monolog/monolog suggests installing aws/aws-sdk-php (Allow sending log messages to AWS services like DynamoDB)
monolog/monolog suggests installing rollbar/rollbar (Allow sending log messages to Rollbar)
monolog/monolog suggests installing php-console/php-console (Allow sending log messages to Google Chrome)
symfony/console suggests installing symfony/lock
magento/framework suggests installing ext-imagick (Use Image Magick >=3.0.0 as an optional alternative image processing library)
zendframework/zend-session suggests installing mongodb/mongodb (If you want to use the MongoDB session save handler)
zendframework/zend-session suggests installing zendframework/zend-cache (ZendCache component)
paragonie/random_compat suggests installing ext-libsodium (Provides a modern crypto API that can be used to generate random bytes.)
zendframework/zend-captcha suggests installing zendframework/zend-i18n-resources (Translations of captcha messages)
zendframework/zend-captcha suggests installing zendframework/zendservice-recaptcha (ZendServiceReCaptcha component)
magento/module-widget suggests installing magento/module-widget-sample-data (Sample Data version: 100.3.*)
magento/module-theme suggests installing magento/module-theme-sample-data (Sample Data version: 100.3.*)
magento/module-wishlist suggests installing magento/module-wishlist-sample-data (Sample Data version: 100.3.*)
magento/module-customer suggests installing magento/module-customer-sample-data (Sample Data version: 100.3.*)
magento/module-sales suggests installing magento/module-sales-sample-data (Sample Data version: 100.3.*)
magento/module-cms suggests installing magento/module-cms-sample-data (Sample Data version: 100.3.*)
magento/module-catalog suggests installing magento/module-catalog-sample-data (Sample Data version: 100.3.*)
magento/module-tax suggests installing magento/module-tax-sample-data (Sample Data version: 100.3.*)
magento/module-sales-rule suggests installing magento/module-sales-rule-sample-data (Sample Data version: 100.3.*)
magento/module-review suggests installing magento/module-review-sample-data (Sample Data version: 100.3.*)
magento/module-downloadable suggests installing magento/module-downloadable-sample-data (Sample Data version: 100.3.*)
magento/module-msrp suggests installing magento/module-msrp-sample-data (Sample Data version: 100.3.*)
magento/module-grouped-product suggests installing magento/module-grouped-product-sample-data (Sample Data version: 100.3.*)
magento/module-catalog-rule suggests installing magento/module-catalog-rule-sample-data (Sample Data version: 100.3.*)
magento/module-bundle suggests installing magento/module-bundle-sample-data (Sample Data version: 100.3.*)
magento/module-asynchronous-operations suggests installing magento/module-logging (101.1.*)
symfony/property-access suggests installing psr/cache-implementation (To cache access methods.)
magento/module-configurable-product suggests installing magento/module-configurable-sample-data (Sample Data version: 100.3.*)
magento/module-configurable-product suggests installing magento/module-product-links-sample-data (Sample Data version: 100.3.*)
vertex/module-tax suggests installing magento/module-gift-wrapping (Vertex Tax Links for Magento 2 also supports Magento's Gift Wrapping module)
vertex/module-tax suggests installing magento/module-gift-card-account (Vertex Tax Links for Magento 2 also supports Magento's Gift Card Account module)
vertex/module-tax suggests installing magento/module-reward (Vertex Tax Links for Magento 2 also supports Magento's Reward module)
zendframework/zend-barcode suggests installing zendframework/zendpdf (ZendPdf component)
temando/module-shipping-m2 suggests installing magento/module-rma (^101.1.0)
temando/module-shipping-m2 suggests installing magento/module-scalable-checkout (^100.3.0)
temando/module-shipping-m2 suggests installing magento/module-scalable-oms (^100.3.0)
ramsey/uuid suggests installing ircmaxell/random-lib (Provides RandomLib for use with the RandomLibAdapter)
ramsey/uuid suggests installing ext-libsodium (Provides the PECL libsodium extension for use with the SodiumRandomGenerator)
ramsey/uuid suggests installing ext-uuid (Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator)
ramsey/uuid suggests installing ramsey/uuid-doctrine (Allows the use of RamseyUuidUuid as Doctrine field type.)
ramsey/uuid suggests installing ramsey/uuid-console (A console application for generating UUIDs with ramsey/uuid)
guzzlehttp/psr7 suggests installing zendframework/zend-httphandlerrunner (Emit PSR-7 responses)
amzn/amazon-pay-module suggests installing magento/module-scalable-checkout (*)
amzn/amazon-pay-module suggests installing magento/module-scalable-oms (*)
magento/module-swatches suggests installing magento/module-swatches-sample-data (Sample Data version: 100.3.*)
magento/module-sample-data suggests installing magento/sample-data-media (Sample Data version: 100.3.*)
magento/module-offline-shipping suggests installing magento/module-offline-shipping-sample-data (Sample Data version: 100.3.*)
zendframework/zend-json suggests installing zendframework/zendxml (To support ZendJsonJson::fromXml() usage)
zendframework/zend-view suggests installing zendframework/zend-authentication (ZendAuthentication component)
zendframework/zend-view suggests installing zendframework/zend-mvc-plugin-flashmessenger (zend-mvc-plugin-flashmessenger component, if you want to use the FlashMessenger view helper with zend-mvc versions 3 and up)
zendframework/zend-view suggests installing zendframework/zend-navigation (ZendNavigation component)
zendframework/zend-view suggests installing zendframework/zend-paginator (ZendPaginator component)
zendframework/zend-view suggests installing zendframework/zend-permissions-acl (ZendPermissionsAcl component)
zendframework/zend-log suggests installing ext-mongo (mongo extension to use Mongo writer)
zendframework/zend-log suggests installing ext-mongodb (mongodb extension to use MongoDB writer)
zendframework/zend-i18n suggests installing zendframework/zend-cache (ZendCache component)
zendframework/zend-i18n suggests installing zendframework/zend-i18n-resources (Translation resources)
zendframework/zend-feed suggests installing zendframework/zend-cache (ZendCache component, for optionally caching feeds between requests)
symfony/event-dispatcher suggests installing symfony/http-kernel
phpseclib/phpseclib suggests installing ext-libsodium (SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.)
phpseclib/phpseclib suggests installing ext-mcrypt (Install the Mcrypt extension in order to speed up a few other cryptographic operations.)
paragonie/sodium_compat suggests installing ext-libsodium (PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.)
jms/serializer suggests installing doctrine/cache (Required if you like to use cache functionality.)
consolidation/output-formatters suggests installing symfony/var-dumper (For using the var_dump formatter)
consolidation/robo suggests installing pear/archive_tar (Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.)
consolidation/robo suggests installing henrikbjorn/lurker (For monitoring filesystem changes in taskWatch)
consolidation/robo suggests installing patchwork/jsqueeze (For minifying JS files in taskMinify)
consolidation/robo suggests installing natxet/CssMin (For minifying CSS files in taskMinify)
phpunit/php-code-coverage suggests installing ext-xdebug (^2.5.5)
sebastian/global-state suggests installing ext-uopz (*)
phpunit/phpunit suggests installing phpunit/php-invoker (^1.1)
phpunit/phpunit suggests installing ext-xdebug (*)
facebook/webdriver suggests installing ext-SimpleXML (For Firefox profile creation)
codeception/codeception suggests installing aws/aws-sdk-php (For using AWS Auth in REST module and Queue module)
codeception/codeception suggests installing codeception/specify (BDD-style code blocks)
codeception/codeception suggests installing codeception/verify (BDD-style assertions)
codeception/codeception suggests installing codeception/phpbuiltinserver (Start and stop PHP built-in web server for your tests)
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 symfony/phpunit-bridge (For phpunit-bridge support)
codeception/codeception suggests installing stecman/symfony-console-completion (For BASH autocompletion)
friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-isidenticalstring (For IsIdenticalString constraint.)
friendsofphp/php-cs-fixer suggests installing php-cs-fixer/phpunit-constraint-xmlmatchesxsd (For XmlMatchesXsd constraint.)
lusitanian/oauth suggests installing predis/predis (Allows using the Redis storage backend.)
symfony/dependency-injection suggests installing symfony/expression-language (For using expressions in service container configuration)
symfony/dependency-injection suggests installing symfony/proxy-manager-bridge (Generate service proxies to lazy load them)
Package phpunit/phpunit-mock-objects is abandoned, you should avoid using it. No replacement was suggested.
Writing lock file
Generating autoload files

6. Install Magento

タイムアップ。。残念。。。

7. First time deployment

デプロイするところまで行きたかった。。

タイトルとURLをコピーしました