Команды Composer / drupal генерируют ошибки.Что не так с моей настройкой? - PullRequest
0 голосов
/ 09 февраля 2019

Из установленного каталога drupal Я сгенерировал новую новую установку drupal 8.

Затем я сгенерировал новый модуль с консолью drupal

drupal generate:module
Enter the new module name:

 > broucher
 Enter the module machine name [broucher]:
 > 
 Enter the module Path [modules/custom]:
 > 
 Enter module description [My Awesome Module]:
 > Brochure Entiy Module
 Enter package name [Custom]:
 > 
 Enter Drupal Core version [8.x]:
 > 
 Do you want to generate a .module file? (yes/no) [yes]:
 > 
 Define module as feature (yes/no) [no]:
 > 
 Do you want to add a composer.json file to your module? (yes/no) [yes]:
 > 
 Would you like to add module dependencies? (yes/no) [no]:
 > 
 Do you want to generate a unit test class? (yes/no) [yes]:
 > 
 Do you want to generate a themeable template? (yes/no) [yes]:
 >   
 Do you want proceed with the operation? (yes/no) [yes]:
 > 
Generated or updated files
 Generation path: /Users/mike/websites/content-entity-example-VI
 1 - /modules/custom/broucher/broucher.info.yml
 2 - /modules/custom/broucher/broucher.module
 3 - /modules/custom/broucher/composer.json
 4 - /modules/custom/broucher/tests/src/Functional/LoadTest.php
 5 - /modules/custom/broucher/broucher.module
 6 - /modules/custom/broucher/templates/broucher.html.twig                                                                                                                   
 Generated lines: "101"   

Затем я запустил обновление наmodule:

drupal module:update brochure --composer   

Затем выводится длинный набор сообщений об ошибках (можно добавить, если это считается важным)

Кажется, что окончательная ошибка: [

RuntimeException]                                                                                                                                                                            
    Source directory /Users/mike/websites/content-entity-example-VI/vendor/drupal/coder has uncommitted changes.

Последующие исполненияошибки «drupal» get:

Fatal error: require(): Failed opening required '/Users/mike/websites/content-entity-example-VI/vendor/composer/../symfony/phpunit-bridge/bootstrap.php' (include_path='.:') in /Users/mike/websites/content-entity-example-VI/vendor/composer/autoload_real.php on line 66

Если я выполню обновление композитора, запустив «drupal» в командной строке, оно будет готово к повторному запуску.

Я бьюсьна это несколько часов;любая помощь будет оценена.

...