iqual / drupal-platform
Project asset package for the iqual internal developer platform's Drupal integration.
Requires
- iqual/project-scaffold: ^1.1
- 2.x-dev
- v2.0.0
- v2.0.0-beta8
- v2.0.0-beta7
- v2.0.0-beta6
- v2.0.0-beta5
- v2.0.0-beta4
- v2.0.0-beta3
- v2.0.0-beta2
- v2.0.0-beta1
- v2.0.0-alpha1
- 1.x-dev
- v1.7.1
- v1.7.0
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.1
- v1.5.0
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3
- v1.2
- dev-issue/PF-512_add-ddev
- dev-issue/PF-525_upgrade-commands
- dev-main
- dev-issue/DUP-194_d11-upgrade
- dev-release/1.6.0
- dev-release/1.4.0
This package is auto-updated.
Last update: 2026-03-26 14:10:42 UTC
README
This package contains assets for scaffolding configuration files in a Drupal project. It is an "asset package" for the iqual/project-scaffold Composer plugin that can create new or updating existing projects with pre-defined assets.
The bundled assets are for the iqual internal developer platform's Drupal integration. It supports a DDEV setup using VS Code as IDE. Additionally it contains integrations for a remote deployment to Upsun (formerly Platform.sh) and CI/CD workflows for automation using GitHub Actions.
Platform Features
- Local development environment with DDEV
- VS Code IDE setup
- Workflows for Drupal automation using GitHub Actions
- Integration for deployment to Upsun (formerly Platform.sh)
Makefilecommands for project and app tasks
Quick Start
Make sure to set up the iqual/project-scaffold Composer plugin first:
composer config --no-plugins allow-plugins.iqual/project-scaffold
composer config extra.project-scaffold --json {"allowed-packages":["iqual/drupal-platform"]}
composer require iqual/project-scaffold
Install the asset package, using:
composer require iqual/drupal-platform
Package Variables
During scaffolding it will prompt for package variables that are used when the files are being templated:
name: Code name of the project (e.g.iqual)title: Title of the project (e.g.iqual AG)url: URL to the current remote live deployment (e.g.https://www.iqual.ch)drupal_spot: The drupal single point of truth for asset synchronization (e.g.main-bvxea6i)runtime.php_version: PHP version of the platform (e.g.8.3)runtime.db_version: Database version of the platform (e.g.10.6)deployment: Remote deployment integration (e.g.platform.sh)
Check the documentation for a full list of the Drupal Platform's available package variables.
Managed Assets
List of files that are going to be managed in the destination project by this package.
Added Assets
Assets that are only added if it doesn't exist in the target yet:
Show structure of added assets
assets/add/
├── .platform
│ └── routes.yaml.twig
└── @web-root
└── sites
└── default
├── all.settings.php
├── local.services.yml
└── local.settings.php.twig
Replaced Assets
Assets that are fully managed by the package and will be created if inexistent or otherwise overwritten in the target destination:
Show structure of replaced assets
assets/replace/
├── @app-root
│ ├── .environment.twig
│ ├── drush
│ │ ├── drush.yml
│ │ ├── platformsh_generate_drush_yml.php.twig
│ │ └── sites
│ │ └── self.site.yml.twig
│ ├── php.ini.twig
│ ├── phpcs.xml.dist
│ ├── phpstan.neon
│ ├── phpunit.xml.dist
│ └── resources
│ ├── build.sh.twig
│ ├── deploy.sh.twig
│ └── robots.txt.twig
├── .ddev
│ ├── .env.solr.twig
│ ├── commands
│ │ └── web
│ │ ├── lint
│ │ ├── phpcbf
│ │ ├── phpcs
│ │ ├── phpstan
│ │ └── phpunit
│ ├── config.solr.yaml.twig
│ ├── config.yaml.twig
│ ├── docker-compose.solr.yaml.twig
│ ├── homeadditions
│ │ └── .bash_aliases.twig
│ └── php
│ └── my-php.ini.twig
├── .editorconfig
├── .github
│ ├── actions
│ │ ├── install-local
│ │ │ └── action.yml.twig
│ │ └── upgrade
│ │ ├── rector.php
│ │ └── upgrader.sh
│ └── workflows
│ ├── config-pull.yml.twig
│ ├── phpcs.yml.twig
│ ├── phpunit-functional-testing.yml.twig
│ ├── phpunit-unit-testing.yml.twig
│ ├── testing.yml.twig
│ ├── update.yml.twig
│ ├── upgrade.yml.twig
│ └── visual-regression-testing.yml.twig
├── Makefile
├── README.md.twig
├── solr
│ └── site_search
│ └── conf
│ └── README.md.twig
├── .vscode
│ ├── extensions.json
│ ├── launch.json
│ ├── settings.json.twig
│ └── tasks.json
└── @web-root
└── sites
└── default
├── settings.php
└── settings.platformsh.php.twig
Warning
These files should not be modified in a project anymore, since they will be overwritten by this package.
Merged Assets
Assets that will be merged into existing destination files or added if inexistent:
Show structure of merged assets
assets/merge/
├── .dockerignore
├── .env.twig
├── .env.visreg.twig
├── .gitattributes
├── .gitignore.twig
├── .platform
│ └── services.yaml.twig
├── .platform.app.yaml.twig
└── playwright-vrt.config.json.twig