-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 802 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 802 Bytes
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
29
30
31
32
{
"name": "drupal/rename_module",
"description": "A Drupal module that provides a Drush command to rename custom Drupal modules.",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"require": {
"drupal/core": "^9.0 || ^10.0",
"drush/drush": "^12.0"
},
"homepage": "https://drupal.org/project/rename_module",
"authors": [
{
"name": "Bevan Wishart",
"email": "bevan.wishart@gmail.com"
}
],
"extra": {
"drupal": {
"version": "1.0.0",
"datestamp": "1630454400",
"security-coverage": {
"status": "covered",
"message": "This project is provided under the security advisory policy for Drupal contributed projects."
}
}
},
"autoload": {
"psr-4": {
"Drupal\\rename_module\\": "src/"
}
}
}