imagex / swat
A Robo CLI tool for ImageX Projects in Drupal 8+
7.0.7
2026-06-09 19:46 UTC
Requires
- php: >=8.0
- ext-posix: *
- acquia/coding-standards: ^3.0
- acquia/drupal-recommended-settings: ^1.0
- consolidation/config: ^2 || ^3
- consolidation/robo: ^4 || ^5
- cweagans/composer-patches: ^1.7 || ^2
- drush/drush: ^12.5 || ^13
- php-parallel-lint/php-parallel-lint: ^1.4
- phpro/grumphp: ^2.5
This package is auto-updated.
Last update: 2026-06-19 14:44:27 UTC
README

(SUPER WICKED AWESOME TOOL)
SWAT is meant to be a helper for projects within ImageX. It provides a DDEV setup, some templated Bitbucket pipelines and deployment helpers. And it's super wicked awesome.
Requirements
SWAT requires the following to run:
- DDEV - https://ddev.readthedocs.io/
- Composer - https://getcomposer.org/
- PHP >=8.1
Available Commands
Run ddev swat list to get a listing of available commands.
GETTING STARTED
New projects must use Drupal 11.
git clone git@bitbucket.org:ixm/swat-project-template.git <project-name>- YUSA / OpenY:
git clone --branch=yusa git@bitbucket.org:ixm/swat-project-template.git <project-name>
- YUSA / OpenY:
cd <project-name>rm -rf .gitddev config --docroot=docroot --project-type=drupal11 --php-version=8.3 --composer-version=2.8.12- Pantheon/Platform.sh: Use
webfor--docroot - YUSA / OpenY: Use
drupal10for--project-type
- Pantheon/Platform.sh: Use
- Modify PHP version to match your remote host
- Initialize a new git repository
git initgit add .git commit -m "Initial commit"
ddev composer installddev swat setup- Modify
ddev/config.yamlfor any stack changes- DB, NodeJS, composer, etc versions to match your remote host
- Custom services, if needed
ddev restartddev swat install- Export your config.
- Check/Setup config splits as well
- Setup your git remote in
swat/swat.yml(see example below) - Push your code to Bitbucket:
git remote add origin git@bitbucket.org:example/example.gitgit add . && git commit -m "PROJ-1: Initial Setup for <project>."git push -u origin master
Git Remote Setup:
Example of Git config in swat.yml for remote:
git:
default_branch: develop
remotes:
cloud: 'ixmcomponents@svn-4707.devcloud.hosting.acquia.com:ixmcomponents.git'
user:
name: 'ImageX Media'
email: no-reply@imagexmedia.com
Hosting Provider
See our internal documentation: Configuring your hosting provider files
See DDEV documentation: Hosting Provider Integration
Existing Projects
Existing projects generally should be manually upgraded until such an update script exists.