This repository has been archived by the owner on Jun 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.47 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
79
{
"name": "ec-europa/europa-demo",
"description": "Europa demo site, based on OpenEuropa components.",
"type": "project",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"drupal/config_installer": "~1.8",
"drupal/core": "~8.6",
"drupal/default_content": "^1.0@alpha",
"drupal/file_entity": "^2.0@beta",
"openeuropa/oe_auth": "^0.1",
"openeuropa/oe_multilingual": "^0.1",
"openeuropa/oe_paragraphs": "^0.1",
"openeuropa/oe_profile": "^0.1",
"openeuropa/oe_theme": "^0.4",
"openeuropa/oe_webtools": "^0.1"
},
"require-dev": {
"composer/installers": "^1.2",
"drupal-composer/drupal-scaffold": "^2.2",
"drupal/console": "^1",
"drupal/drupal-extension": "^4.0.0@alpha",
"drupal/drush_language": "^1.0",
"drush/drush": "^9",
"nikic/php-parser": "~3",
"openeuropa/code-review": "^0.2",
"openeuropa/composer-artifacts": "^0.1",
"openeuropa/task-runner": "^0.6",
"webflo/drupal-core-require-dev": "~8.6"
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": [
"@drupal-scaffold",
"./vendor/bin/run drupal:site-setup"
],
"post-update-cmd": [
"@drupal-scaffold",
"./vendor/bin/run drupal:site-setup"
]
},
"autoload": {
"psr-4": {
"Ec\\Europa\\EuropaDemo\\": "./src/"
}
},
"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,
"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,
"platform": {
"php": "7.1.9"
}
}
}