-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.79 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "richardbporter/drush-users-commands",
"description": "Drush commands to interact with multiple Drupal users.",
"type": "drupal-drush",
"license": "GPL-2.0-or-later",
"keywords": ["drush", "drupal", "user-list", "list-users"],
"authors": [
{
"name": "Richard B. Porter",
"homepage": "https://github.com/richardbporter"
}
],
"require": {
"php": ">=8.1",
"composer/installers": "^2.1",
"drush/drush": "^12.2 || ^13.0"
},
"require-dev": {
"drupal/core-recommended": "^10.2 || ^11.0",
"drupal/core-composer-scaffold": "^10.2 || ^11.0",
"drupal/core-dev": "^10.2 || ^11.0"
},
"autoload-dev": {
"psr-4": {
"UsersCommands\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "UsersCommands",
"installer-paths": {
"sut/core": ["type:drupal-core"],
"sut/libraries/{$name}": ["type:drupal-library"],
"sut/modules/unish/{$name}": ["drupal/devel"],
"sut/themes/unish/{$name}": ["drupal/empty_theme"],
"sut/modules/contrib/{$name}": ["type:drupal-module"],
"sut/profiles/contrib/{$name}": ["type:drupal-profile"],
"sut/themes/contrib/{$name}": ["type:drupal-theme"],
"sut/drush/contrib/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"locations": {
"web-root": "./sut"
},
"file-mapping": {
"[project-root]/.gitattributes": false,
"[project-root]/.editorconfig": false
},
"gitignore": false
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
}
}