-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.99 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
{
"name": "drupal/migrate_views",
"type": "drupal-module",
"description": "Integration between Migrate and Views.",
"keywords": ["drupal", "web", "migrate"],
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"drupal/migrate_plus": "^4",
"drupal/migrate_tools": "^4"
},
"require-dev": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.5",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/console": "^1.0.2",
"drush/drush": "^9",
"phpro/grumphp": "~0.15",
"webflo/drupal-core-require-dev": "^8.7",
"openeuropa/task-runner": "~1.0-beta3",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"autoload": {
"psr-4": {
"Drupal\\migrate_views\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\migrate_views\\": "./tests/"
}
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"installer-paths": {
"build/core": ["type:drupal-core"],
"build/libraries/{$name}": ["type:drupal-library"],
"build/modules/contrib/{$name}": ["type:drupal-module"],
"build/profiles/contrib/{$name}": ["type:drupal-profile"],
"build/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"drush": {
"services": {
"drush.services.yml": "^9"
}
}
},
"config": {
"sort-packages": true
}
}