├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── LICENSE ├── README.md ├── commands └── web │ ├── drupal │ ├── nightwatch │ └── phpunit ├── config.ddev-drupal-core-dev.yaml ├── core-dev ├── .env ├── gitignore └── src │ └── Command │ ├── AdminLoginCommand.php │ ├── BootCommand.php │ ├── CacheCommand.php │ ├── LintCommand.php │ ├── LintCspellCommand.php │ ├── LintCssCommand.php │ ├── LintJsCommand.php │ ├── LintPhpCsCommand.php │ ├── LintPhpStanCommand.php │ ├── ModuleInstallCommand.php │ ├── TestBrowserCommand.php │ ├── TestCommand.php │ ├── TestExtensionsCommand.php │ └── UninstallCommand.php ├── docker-compose.core-dev-selenium.yaml ├── install.yaml ├── tests └── test.bats └── web-build └── Dockerfile.chromium /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/README.md -------------------------------------------------------------------------------- /commands/web/drupal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/commands/web/drupal -------------------------------------------------------------------------------- /commands/web/nightwatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/commands/web/nightwatch -------------------------------------------------------------------------------- /commands/web/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/commands/web/phpunit -------------------------------------------------------------------------------- /config.ddev-drupal-core-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/config.ddev-drupal-core-dev.yaml -------------------------------------------------------------------------------- /core-dev/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/.env -------------------------------------------------------------------------------- /core-dev/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/gitignore -------------------------------------------------------------------------------- /core-dev/src/Command/AdminLoginCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/AdminLoginCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/BootCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/BootCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/CacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/CacheCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/LintCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/LintCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/LintCspellCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/LintCspellCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/LintCssCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/LintCssCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/LintJsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/LintJsCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/LintPhpCsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/LintPhpCsCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/LintPhpStanCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/LintPhpStanCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/ModuleInstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/ModuleInstallCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/TestBrowserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/TestBrowserCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/TestCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/TestExtensionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/TestExtensionsCommand.php -------------------------------------------------------------------------------- /core-dev/src/Command/UninstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/core-dev/src/Command/UninstallCommand.php -------------------------------------------------------------------------------- /docker-compose.core-dev-selenium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/docker-compose.core-dev-selenium.yaml -------------------------------------------------------------------------------- /install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/install.yaml -------------------------------------------------------------------------------- /tests/test.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/tests/test.bats -------------------------------------------------------------------------------- /web-build/Dockerfile.chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justafish/ddev-drupal-core-dev/HEAD/web-build/Dockerfile.chromium --------------------------------------------------------------------------------