forked from Vardot/varbase_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.65 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
{
"name": "drupal/varbase_api",
"type": "drupal-module",
"description": "A JSON:API implementation with authentication and authorization that allows for easy ingestion of content by other applications.",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Vardot",
"homepage": "https://www.drupal.org/vardot",
"role": "Maintainer"
}
],
"support": {
"issues": "https://www.drupal.org/project/issues/varbase_api",
"source": "http://cgit.drupalcode.org/varbase_api"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"composer/installers": "~1.0",
"oomphinc/composer-installers-extender": "~1.0",
"cweagans/composer-patches": "~1.0",
"drupal/drupal-library-installer-plugin": "^0.3",
"drupal/consumers": "~1.0",
"drupal/jsonapi": "~2.0",
"drupal/openapi": "~1.0",
"drupal/openapi_ui_redoc": "~1.0",
"drupal/openapi_ui_swagger": "~1.0",
"drupal/simple_oauth": "~4.0",
"drupal/schema_metatag": "~1.0",
"drupal/restui": "~1.0",
"drupal/jsonapi_extras": "~3.0",
"swagger-api/swagger-ui": "~3.0"
},
"extra": {
"branch-alias": {
"dev-8.x-6.x": "8.6.x-dev"
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"drupal-libraries": {
"libraries": [
{"name": "swagger-ui", "package": "swagger-api/swagger-ui"}
]
},
"enable-patching": true,
"composer-exit-on-patch-failure": true
}
}