forked from contentacms/contenta_jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.49 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
{
"name": "contentacms/contenta_jsonapi",
"description": "",
"type": "drupal-profile",
"authors": [
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"extra": {
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
}
},
"require": {},
"config": {
"process-timeout": 0
},
"scripts": {
"install-contenta": "scripts/development/build-contenta_jsonapi.sh",
"start-contenta": "scripts/development/start-contenta_jsonapi.sh",
"ci:helper": "scripts/ci/travis/tests/contenta_ci_tests_helper.sh",
"ci:before-deploy": "scripts/ci/travis/before_deploy.sh",
"post-package-install": [
"Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
],
"post-package-update": [
"Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
]
},
"provide": {
},
"require-dev": {
"drupal/config_inspector": "1.x-dev",
"drupal/coder": "^8.2",
"drupal/features": "^3.5",
"guzzlehttp/guzzle": "~6.0"
}
}