gitextract_211omb_v/ ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── UPDATE.md ├── acquia-pipelines.yml ├── composer.json ├── config/ │ ├── install/ │ │ ├── user.role.administrator.yml │ │ └── user.settings.yml │ ├── optional/ │ │ ├── block.block.bartik_account_menu.yml │ │ ├── block.block.bartik_branding.yml │ │ ├── block.block.bartik_breadcrumbs.yml │ │ ├── block.block.bartik_content.yml │ │ ├── block.block.bartik_footer.yml │ │ ├── block.block.bartik_help.yml │ │ ├── block.block.bartik_local_actions.yml │ │ ├── block.block.bartik_local_tasks.yml │ │ ├── block.block.bartik_main_menu.yml │ │ ├── block.block.bartik_messages.yml │ │ ├── block.block.bartik_page_title.yml │ │ ├── block.block.bartik_powered.yml │ │ ├── block.block.seven_breadcrumbs.yml │ │ ├── block.block.seven_content.yml │ │ ├── block.block.seven_help.yml │ │ ├── block.block.seven_local_actions.yml │ │ ├── block.block.seven_login.yml │ │ ├── block.block.seven_messages.yml │ │ ├── block.block.seven_page_title.yml │ │ ├── block.block.seven_primary_local_tasks.yml │ │ ├── block.block.seven_secondary_local_tasks.yml │ │ ├── block_content.type.text.yml │ │ ├── comment.type.comment.yml │ │ ├── core.entity_form_display.block_content.text.default.yml │ │ ├── core.entity_form_display.comment.comment.default.yml │ │ ├── core.entity_view_display.block_content.text.default.yml │ │ ├── core.entity_view_display.comment.comment.default.yml │ │ ├── field.field.block_content.text.body.yml │ │ └── field.field.comment.comment.comment_body.yml │ └── schema/ │ └── lightning.schema.yml ├── drush.services.yml ├── grumphp.yml ├── help/ │ └── content_roles.md ├── hooks/ │ ├── README.md │ └── common/ │ ├── post-code-deploy/ │ │ ├── .gitignore │ │ └── reinstall.sh │ └── post-code-update/ │ ├── .gitignore │ └── reinstall.sh ├── install-drupal.sh ├── lightning.info.yml ├── lightning.install ├── lightning.profile ├── modules/ │ └── lightning_install/ │ ├── composer.json │ └── lightning_install.info.yml ├── phpunit.xml ├── release-branch.sh ├── settings.local.php ├── src/ │ ├── Commands/ │ │ └── Uninstaller.php │ ├── Composer/ │ │ ├── AssetPackagist.php │ │ ├── ConfigureLegacyProject.php │ │ └── PatchedConstraint.php │ ├── Generators/ │ │ ├── SubProfileGenerator.php │ │ ├── install.twig │ │ └── profile.twig │ ├── LightningServiceProvider.php │ ├── ProxyClass/ │ │ └── RequiredModuleUninstallValidator.php │ ├── RequiredModuleUninstallValidator.php │ └── Update/ │ ├── Update320.php │ └── Update405.php ├── tarball.sh └── tests/ ├── lightning_extender/ │ ├── lightning_extender.info.yml │ └── lightning_extender.profile ├── packages.yml ├── packages_alter.yml ├── src/ │ ├── ExistingSite/ │ │ ├── ApiTest.php │ │ ├── ConfigIntegrityTest.php │ │ └── ViewModeTest.php │ ├── Functional/ │ │ ├── LightningTest.php │ │ ├── SubprofileGeneratorTest.php │ │ ├── UpdatePath3xTest.php │ │ └── UpdatePath4xTest.php │ └── Kernel/ │ └── Update405Test.php ├── travis/ │ └── install.sh └── update.php