forked from openeuropa/rdf_skos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.11 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
{
"name": "openeuropa/rdf_skos",
"description": "Drupal module that contains the RDF SKOS entity types.",
"type": "drupal-module",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"drupal/core": "^8.9 || ^9",
"drupal/sparql_entity_storage": "^1.0.0-alpha8",
"easyrdf/easyrdf": "1.0.0 as 0.9.1",
"php": ">=7.3"
},
"require-dev": {
"composer/installers": "^1.5",
"consolidation/robo" : "~1.4",
"cweagans/composer-patches": "~1.0",
"drupal/core-composer-scaffold": "^8.9 || ^9",
"drupal/config_devel": "~1.2",
"drupal/drupal-extension": "~4.0",
"drush/drush": "~10.0",
"nikic/php-parser": "^3.1.5",
"openeuropa/behat-transformation-context" : "~0.1",
"openeuropa/code-review": "~1.6",
"openeuropa/drupal-core-require-dev": "^8.9 || ^9",
"openeuropa/task-runner-drupal-project-symlink": "^1.0",
"phpunit/phpunit": "^7 || ^8"
},
"suggest": {
"drupal/console": "^1"
},
"autoload": {
"psr-4": {
"Drupal\\rdf_skos\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\rdf_skos\\": "./tests/src"
}
},
"scripts": {
"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,
"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"]
},
"drupal-scaffold": {
"locations": {
"web-root": "./build"
}
}
},
"config": {
"sort-packages": true
}
}