Initial Drupal 11 with DDEV setup

This commit is contained in:
gluebox
2025-10-08 11:39:17 -04:00
commit 89ef74b305
25344 changed files with 2599172 additions and 0 deletions

View File

@ -0,0 +1,30 @@
## INTRODUCTION
The {{ name }} module is a DESCRIBE_THE_MODULE_HERE.
The primary use case for this module is:
- Use case #1
- Use case #2
- Use case #3
## REQUIREMENTS
DESCRIBE_MODULE_DEPENDENCIES_HERE
## INSTALLATION
Install as you would normally install a contributed Drupal module.
See: https://www.drupal.org/node/895232 for further information.
## CONFIGURATION
- Configuration step #1
- Configuration step #2
- Configuration step #3
## MAINTAINERS
Current maintainers for Drupal 10:
- FIRST_NAME LAST_NAME (NICKNAME) - https://www.drupal.org/u/NICKNAME

View File

@ -0,0 +1,11 @@
name: '{{ name }}'
type: module
description: '{{ description }}'
package: {{ package }}
core_version_requirement: ^10 || ^11
{% if dependencies %}
dependencies:
{% for dependency in dependencies %}
- {{ dependency }}
{% endfor %}
{% endif %}

View File

@ -0,0 +1,6 @@
<?php
/**
* @file
* Install, update and uninstall functions for the {{ name }} module.
*/

View File

@ -0,0 +1,6 @@
<?php
/**
* @file
* Primary module hooks for {{ name }} module.
*/