drupal / ogcb
A starter kit for building a government community.
Requires
- drupal/add_content_by_bundle: ^1.2.2
- drupal/address: ^2.0.4
- drupal/addtocal_augment: ^1.2.5
- drupal/advancedqueue: ^1.6.0
- drupal/antibot: ^2.0.4
- drupal/autosave_form: ^1.11.0
- drupal/better_exposed_filters: ^7.1.2
- drupal/block_exclude_pages: ^2.2.2
- drupal/block_visibility_conditions: ^2.2.0
- drupal/coffee: ^2.0.1
- drupal/color_field: ^3.0.2
- drupal/content_patch_gitlab_api: ^1.0.0-alpha4
- drupal/core: ^11.3
- drupal/crop: ^2.6.0
- drupal/ctools: ^4.1.0
- drupal/danse: ^2.3.7
- drupal/danse_group: ^1.0.0-alpha3
- drupal/dashboard: ^2.2.0
- drupal/date_augmenter: ^1.1.3
- drupal/drupal_cms_helper: ^2.1.3
- drupal/editor_file: ^2.1.2
- drupal/email_registration: ^2.0.0-rc8
- drupal/encrypt: ^3.2.0
- drupal/entity: ^1.6.0
- drupal/entity_hierarchy: ^5.0.0-alpha9
- drupal/entity_hierarchy_group: ^1.0.0-alpha2
- drupal/entity_hierarchy_trash: ^1.0.0-alpha1
- drupal/entity_hierarchy_widgets: ^1.0.0-alpha4
- drupal/facet_type_tray: ^1.0.0
- drupal/facets: ^3.0.3
- drupal/field_config_cardinality: ^4.0.2
- drupal/field_group: ^4.0.0
- drupal/flag: ^5.0.3
- drupal/flexible_permissions: ^2.0.1
- drupal/focal_point: ^2.1.2
- drupal/geocoder: ^4.34.0
- drupal/geofield: ^1.67.0
- drupal/gin: ^5.0.15
- drupal/gin_toolbar: ^3.0.3
- drupal/grequest: ^3.2.4
- drupal/group: ^3.3.5
- drupal/group_features: ^1.0.0-alpha4
- drupal/group_relationship_export: ^1.0.0
- drupal/groupmedia: ^4.0.7
- drupal/hide_revision_field: ^2.5.0
- drupal/kern_ux: ^1.0.0-alpha2
- drupal/key: ^1.22.0
- drupal/klaro: ^3.1.0
- drupal/leaflet: ^10.4.9
- drupal/linkit: ^7.0.16
- drupal/local_task_splitter: ^1.0.1
- drupal/media_library_edit: ^3.0.5
- drupal/media_library_form_element: ^2.1.4
- drupal/menu_link_attributes: ^1.7.0
- drupal/ogcb_kern_ux: ^1.0.0-beta2
- drupal/ogcb_likes: ^1.0.1
- drupal/ogcb_suite: 1.x-dev
- drupal/ogcb_trash_group: ^1.0.1
- drupal/pathauto: ^1.15.0
- drupal/pf_email: ^2.3.0
- drupal/private_message: ^3.0.7
- drupal/push_framework: ^2.3.6
- drupal/push_framework_templates: ^1.0.0
- drupal/rabbit_hole: ^2.0.0-beta2
- drupal/real_aes: ^2.6.0
- drupal/sam: ^1.3.2
- drupal/search_api: ^1.41.0
- drupal/selective_better_exposed_filters: ^3.0.3
- drupal/simple_sitemap: ^4.2.3
- drupal/smart_date: ^4.2.6
- drupal/state_machine: ^1.14.0
- drupal/svg_image: ^3.2.2
- drupal/symfony_mailer: ^1.6.2
- drupal/tagify: ^2.0.2
- drupal/tfa: ^2.0.0-alpha5
- drupal/token: ^1.17.0
- drupal/trash: ^3.0.28
- drupal/trash_comment: ^1.0.1
- drupal/type_tray: ^1.3.2
- drupal/ui_icons: ^1.1.2
- drupal/views_bvb: ^1.0.0-rc2
- drupal/views_infinite_scroll: ^2.0.3
- drupal/views_local_tasks: ^1.0.2
- geocoder-php/nominatim-provider: ^5.7
- vlucas/phpdotenv: ^5.6
This package is auto-updated.
Last update: 2026-06-30 11:42:41 UTC
README
How to set up a new Drupal 11 project with DDEV and require the OGCB site template.
1. Set up a new Drupal 11 project with DDEV
mkdir ogcb-new && cd ogcb-new
ddev config --project-type=drupal11 --docroot=web
ddev start
ddev composer create drupal/recommended-project --no-install
ddev composer require drush/drush
2. Configure composer.json
Minimum stability
The site template and some of its dependencies are not stable releases:
ddev composer config minimum-stability dev
ddev composer config prefer-stable true
Patches file
The site template requires several patches to function. Download the patches file and tell cweagans/composer-patches where to find it:
curl https://git.drupalcode.org/project/ogcb/-/raw/1.x/patches.json -O
Be sure to replace 1.x with the newest tag version if you want a stable experience
composer config extra.composer-patches.patches-file patches.json
3. Require the necessary packages
Require cweagans/composer-patches v2 first. The --no-install flag avoids a partial install before the site template is added:
ddev composer require "cweagans/composer-patches:^2" --no-install
Then require the site template:
ddev composer require "drupal/ogcb:^1.x-dev"
Be sure to replace 1.x with the newest tag version if you want a stable experience
This installs Drupal core and all modules the site template depends on, and applies the patches.
4. Install
ddev drush si
ddev drush cr
cd web
ddev drush recipe ../recipes/ogcb