├── CODEOWNERS ├── README.md ├── assets ├── default.services.pantheon.preproduction.yml ├── initial.settings.php └── settings.pantheon.php ├── composer.json ├── src ├── Assets.php └── Utils.php └── vendored-assets ├── include-settings.php.tmpl └── settings.pantheon.php /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @pantheon-systems/site-experience 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/README.md -------------------------------------------------------------------------------- /assets/default.services.pantheon.preproduction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/assets/default.services.pantheon.preproduction.yml -------------------------------------------------------------------------------- /assets/initial.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/assets/initial.settings.php -------------------------------------------------------------------------------- /assets/settings.pantheon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/assets/settings.pantheon.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/composer.json -------------------------------------------------------------------------------- /src/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/src/Assets.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/src/Utils.php -------------------------------------------------------------------------------- /vendored-assets/include-settings.php.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/vendored-assets/include-settings.php.tmpl -------------------------------------------------------------------------------- /vendored-assets/settings.pantheon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pantheon-systems/drupal-integrations/HEAD/vendored-assets/settings.pantheon.php --------------------------------------------------------------------------------