-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·68 lines (68 loc) · 2.16 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
65
66
67
68
{
"name": "openeuropa/oel_news",
"description": "OpenEuropa Drupal module template.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"cweagans/composer-patches": "~1.0",
"drupal/core": "^8.7",
"drupal/field_permissions": "^1.1",
"drupal/mini_layouts": "1.x-dev@dev",
"drupal/string_field_formatter": "^2.0",
"drupal/text_field_formatter": "^2.0"
},
"require-dev": {
"composer/installers": "~1.5",
"drupal-composer/drupal-scaffold": "~2.2",
"drupal/config_devel": "~1.2",
"drupal/drupal-extension": "~4.0",
"drush/drush": "~9.0@stable",
"guzzlehttp/guzzle": "~6.3",
"openeuropa/code-review": "~1.0.0-beta2",
"openeuropa/drupal-core-require-dev": "^8.7",
"openeuropa/task-runner": "~1.0.0-beta5",
"phpunit/phpunit": "~6.0"
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"autoload": {
"psr-4": {
"Drupal\\oel_news\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oel_news\\": "./tests/"
}
},
"extra": {
"patches": {
"drupal/core": {
"#3001313 - Layout Builder context" : "https://www.drupal.org/files/issues/2020-02-13/3001313--63.patch"
}
},
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/profiles/contrib/{$name}": ["type:drupal-profile"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/themes/contrib/{$name}": ["type:drupal-theme"]
}
},
"config": {
"sort-packages": true
}
}