-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
28 lines (28 loc) · 829 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "drupal/your_extension",
"description": "Provides your_extension functionality.",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Your Name",
"email": "[email protected]",
"homepage": "https://www.drupal.org/u/yourusername",
"role": "Maintainer"
}
],
"homepage": "https://drupal.org/project/your_extension",
"support": {
"issues": "https://drupal.org/project/issues/your_extension",
"source": "https://git.drupalcode.org/project/your_extension"
},
"require": {
"php": ">=8.2"
},
"require-dev": {
"drupal/autologout": "^2"
},
"suggest": {
"drupal/config_ignore": "Ignore certain configuration during import."
}
}