forked from GetDKAN/dkan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.73 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": "getdkan/dkan",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"description": "DKAN Open Data Catalog",
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.5.0",
"drupal/admin_toolbar": "^2.3",
"drupal/config_update": "^1.6",
"drupal/search_api": "^1.15",
"drupal/views_bulk_operations": "^3.6",
"drush/drush": "^10.2.2",
"ext-json": "*",
"ezyang/htmlpurifier" : "^4.11",
"fmizzell/maquina": "^1.1.0",
"getdkan/contracts": "^1.0.0",
"getdkan/datastore" : "^5.1.1",
"getdkan/file-fetcher" : "^3.0.0",
"getdkan/harvest": "^1.0.0",
"getdkan/json-schema-provider": "^0.1.2",
"getdkan/mock-chain": "^1.3.0",
"getdkan/sae" : "^1.1.1",
"getdkan/sql-parser": "^2.0.0",
"guzzlehttp/guzzle" : "^6.3",
"oomphinc/composer-installers-extender": "~1.1",
"ramsey/uuid" : "^3.8.0",
"weitzman/drupal-test-traits": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"Social\\": "src"
}
},
"authors": [
{
"name": "CivicActions",
"email": "[email protected]"
}
],
"extra": {
"dkan-frontend": {
"type": "vcs",
"url": "https://github.com/GetDKAN/data-catalog-app",
"ref": "1.0.2"
}
}
}