-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 2.18 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
{
"name": "acdh-oeaw/arche_core_gui",
"description": "Drupal module to ACDH ARCHE repository",
"type": "drupal-module",
"homepage": "https://github.com/acdh-oeaw/arche_core_gui",
"license": "MIT",
"authors": [
{
"name": "Norbert Czirjak",
"email": "norbert.czirjak@oeaw.ac.at"
}
],
"require": {
"acdh-oeaw/arche-lib": "7.1.0",
"acdh-oeaw/arche-lib-disserv": "4.0.6",
"acdh-oeaw/arche-lib-schema": "7.1.2",
"acdh-oeaw/arche-assets": "^3.14.1",
"zozlak/logging": "*",
"twig/extra-bundle": "*",
"drupal/layout_custom_section_classes": "^1.0"
},
"require-dev": {
"drupal/core-dev": "*"
},
"autoload": {
"psr-4": {
"Drupal\\arche_core_gui\\": "src/",
"Drupal\\arche_core_gui\\Object\\": "src/Object",
"Drupal\\arche_core_gui\\Helper\\": "src/Helper",
"Drupal\\arche_core_gui\\Controller\\": "src/Controller",
"Drupal\\arche_core_gui\\Model\\": "src/Model",
"Drupal\\arche_core_gui\\Traits\\": "src/Traits"
}
},
"extra": {
"drupal-scaffold": {
"file-mapping": {
"[web-root]/.htaccess": "inst/htaccess",
"[web-root]/sites/default/default.services.yml": "inst/sites/default/default.services.yml",
"[web-root]/sites/default/services.yml": "inst/sites/default/services.yml",
"[web-root]/sites/default/default.settings.php": "inst/sites/default/default.settings.php",
"[web-root]/sites/default/settings.local.php": "inst/sites/default/settings.local.php",
"[web-root]/sites/default/settings.php": "inst/sites/default/settings.php",
"[web-root]/sites/default/development.services.yml": "inst/sites/default/development.services.yml",
"[web-root]/sites/default/files/.htaccess": "inst/sites/default/files/htaccess",
"[web-root]/sites/default/files/coll_dl_script/collection_download_repo.py": "inst/sites/default/files/coll_dl_script/collection_download_repo.py"
}
}
},
"config": {
"allow-plugins": true
}
}