forked from contentacms/contenta_jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
98 lines (98 loc) · 3.61 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "contentacms/contenta_jsonapi",
"type": "drupal-profile",
"authors": [
{
"name": "Mateu Aguiló Bosch",
"email": "[email protected]"
},
{
"name": "Daniel Wehner",
"email": "[email protected]"
}
],
"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/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"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"drupal-core-project-message": {
"post-install-cmd-message": [
"<bg=blue;fg=white>drupal/drupal</>: This package is meant for core development,",
" and not intended to be used for production sites.",
" See: https://www.drupal.org/node/3082474"
],
"post-create-project-cmd-message": [
"<bg=red;fg=white>drupal/drupal</>: This package is meant for core development,",
" and not intended to be used for production sites.",
" See: https://www.drupal.org/node/3082474"
]
},
"patches": {}
},
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.6.0",
"drupal/admin_toolbar": "^2.2",
"drupal/consumer_image_styles": "^3||^4",
"drupal/consumers": "^1.8",
"drupal/contentajs": "^1||^2",
"drupal/core": "^8.9||^9",
"drupal/core-project-message": "^8.9||^9",
"drupal/core-vendor-hardening": "^8.9||^9",
"drupal/decoupled_router": "^2",
"drupal/environment_indicator": "^4",
"drupal/image_widget_crop": "^2.1",
"drupal/inline_entity_form": "^1.0@rc",
"drupal/jsonapi_boost": "^2",
"drupal/jsonapi_extras": "^3.13",
"drupal/jsonrpc": "^2",
"drupal/openapi": "^2.0@rc",
"drupal/openapi_jsonapi": "^3",
"drupal/schemata": "^1.0@alpha",
"drupal/simple_oauth": "^5",
"drupal/subrequests": "^3",
"drupal/video_embed_field": "^2.0",
"drupal/openapi_ui": "^1.0@rc",
"drupal/openapi_ui_redoc": "^1.0@rc",
"drupal/warmer": "^2"
},
"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"
}
}