forked from KEY-TEC/content_translation_access
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.75 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
63
64
{
"name": "drupal/content_translation_access",
"type": "drupal-module",
"description": "Provides translation access.",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Christian Wiedemann",
"email": "[email protected]"
}
],
"require-dev": {
"cweagans/composer-patches": "~1.0",
"drupal-composer/drupal-scaffold": "^2.2",
"drupal/config_installer": "1.3.0",
"drupal/console": "~1",
"drush/drush": "*",
"webflo/drupal-core-require-dev": "^8.5",
"phpro/grumphp": "0.11.4",
"peridot-php/leo": "^1.6",
"openeuropa/task-runner": "^0.4"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"autoload": {
"psr-4": {"Drupal\\content_translation_access\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\content_translation_access\\": "tests/src"
}
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": [
"@drupal-scaffold",
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"@drupal-scaffold",
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"patches": {
"drupal/core": {
"Add hook_entity_translation_access drupal.org/i/2918354": "https://www.drupal.org/files/issues/2021-03-24/2918354-18.patch"
}
},
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/profiles/contrib/{$name}": ["type:drupal-profile"],
"build/themes/contrib/{$name}": ["type:drupal-theme"]
}
}
}