forked from openeuropa/oe_content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.42 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
{
"name": "openeuropa/oe_content",
"description": "OpenEuropa Drupal module that contains the EC corporate entity types.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"drupal/core": "~8.6@alpha",
"drupal/field_group": "^1.0",
"drupal/rdf_entity": "dev-1.x",
"easyrdf/easyrdf": "0.10.0-alpha1 as 0.9.2"
},
"require-dev": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "~1.0",
"drupal/config_devel": "~1.2",
"drupal/drupal-extension": "^4.0.0@alpha",
"drupal-composer/drupal-scaffold": "^2.2",
"drush/drush": "^9",
"openeuropa/code-review": "~0.2",
"openeuropa/task-runner": "^0.7",
"openeuropa/drupal-core-require-dev": "~8.6"
},
"suggest": {
"drupal/console": "^1"
},
"autoload": {
"psr-4": {
"Drupal\\oe_content\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\oe_content\\": "./tests/"
}
},
"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": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patches": {
"drupal/rdf_entity": {
"GH-63: Paginating the term list page - https://github.com/ec-europa/rdf_entity/pull/64": "https://patch-diff.githubusercontent.com/raw/ec-europa/rdf_entity/pull/64.patch",
"GH-61 - Fixing RDF taxonomy access bug - https://github.com/ec-europa/rdf_entity/pull/62": "https://patch-diff.githubusercontent.com/raw/ec-europa/rdf_entity/pull/62.patch"
}
},
"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"
}
}
}