-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
78 lines (78 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
78
{
"name": "openeuropa/workshop2",
"description": "Workshop2 Description.",
"type": "project",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"composer/installers": "^1.5",
"cweagans/composer-patches": "^1.0",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/core": "^8.7",
"drupal/pathauto": "^1.8",
"drush/drush": "^9.0",
"openeuropa/composer-artifacts": "~0.1",
"openeuropa/oe_profile": "^0.4",
"openeuropa/oe_theme": "^2.12.0",
"webflo/drupal-finder": "^1.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"drupal/core-dev": "^8.7",
"drupal/drupal-extension": "~4.0",
"ec-europa/toolkit": "^4.4.0"
},
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
]
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"extra": {
"artifacts": {
"openeuropa/oe_theme": {
"dist": {
"url": "https://github.com/{name}/releases/download/{pretty-version}/{project-name}-{pretty-version}.tar.gz",
"type": "tar"
}
}
},
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
]
}
},
"autoload-dev": {
"psr-4": {
"OpenEuropa\\Site\\Tests\\": "./tests/"
}
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"sort-packages": true
}
}