├── .github ├── release.yml └── workflows │ └── tests.yml ├── .gitignore ├── README.md ├── commands ├── host │ ├── xb-cypress │ ├── xb-fix │ ├── xb-setup │ └── xb-static └── web │ ├── xb-autosave │ ├── xb-core-set-version │ ├── xb-dev-extras │ ├── xb-eslint │ ├── xb-phpcs │ ├── xb-phpstan │ ├── xb-phpunit │ ├── xb-site-install │ ├── xb-stylelint │ ├── xb-ui-build │ ├── xb-ui-dev │ └── xb-workspaces-dev ├── config.drupal-xb-dev.yaml ├── install.yaml ├── resources └── xquartz-settings.png ├── tests ├── test.bats └── test.sh └── var └── .gitkeep /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/README.md -------------------------------------------------------------------------------- /commands/host/xb-cypress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/host/xb-cypress -------------------------------------------------------------------------------- /commands/host/xb-fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/host/xb-fix -------------------------------------------------------------------------------- /commands/host/xb-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/host/xb-setup -------------------------------------------------------------------------------- /commands/host/xb-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/host/xb-static -------------------------------------------------------------------------------- /commands/web/xb-autosave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-autosave -------------------------------------------------------------------------------- /commands/web/xb-core-set-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-core-set-version -------------------------------------------------------------------------------- /commands/web/xb-dev-extras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-dev-extras -------------------------------------------------------------------------------- /commands/web/xb-eslint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-eslint -------------------------------------------------------------------------------- /commands/web/xb-phpcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-phpcs -------------------------------------------------------------------------------- /commands/web/xb-phpstan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-phpstan -------------------------------------------------------------------------------- /commands/web/xb-phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-phpunit -------------------------------------------------------------------------------- /commands/web/xb-site-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-site-install -------------------------------------------------------------------------------- /commands/web/xb-stylelint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-stylelint -------------------------------------------------------------------------------- /commands/web/xb-ui-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-ui-build -------------------------------------------------------------------------------- /commands/web/xb-ui-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-ui-dev -------------------------------------------------------------------------------- /commands/web/xb-workspaces-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/commands/web/xb-workspaces-dev -------------------------------------------------------------------------------- /config.drupal-xb-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/config.drupal-xb-dev.yaml -------------------------------------------------------------------------------- /install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/install.yaml -------------------------------------------------------------------------------- /resources/xquartz-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/resources/xquartz-settings.png -------------------------------------------------------------------------------- /tests/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/tests/test.bats -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupal-xb/ddev-drupal-xb-dev/HEAD/tests/test.sh -------------------------------------------------------------------------------- /var/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------