generated from SU-SWS/stanford_module_example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·39 lines (39 loc) · 949 Bytes
/
composer.json
File metadata and controls
executable file
·39 lines (39 loc) · 949 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
33
34
35
36
37
38
39
{
"name": "su-sws/stanford_fields",
"description": "Stanford Fields",
"type": "drupal-custom-module",
"homepage": "https://github.com/SU-SWS/stanford_fields",
"authors": [],
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"conflict": {
"drupal/book": "<2.0"
},
"require": {
"drupal/core": "^11.1",
"drupal/ds": "^3.3"
},
"require-dev": {
"drupal/cshs": "^4.0",
"drupal/book": "^2.0",
"drupal/fontawesome": ">=3.0",
"drupal/search_api": "^1.38"
},
"autoload": {
"psr-4": {
"Drupal\\stanford_fields\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\stanford_fields\\": "./tests/src"
}
}
}