-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (95 loc) · 3.1 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
{
"name": "drupal/drupalbase",
"description": "A template for setting up an base Drupal site.",
"type": "drupal-profile",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"cweagans/composer-patches": "^1.0",
"drupal/admin_toolbar": "^3.0",
"drupal/bitly_links": "^1.0",
"drupal/core": "8.9",
"drupal/core-composer-scaffold": "^8.9",
"drupal/devel": "^4.1",
"drupal/easy_breadcrumb": "^2.0",
"drupal/entity_browser": "^2.6",
"drupal/entity_embed": "~1.1",
"drupal/entity_reference_revisions": "~1.9",
"drupal/facets": "^1.8",
"drupal/facets_form": "1.x-dev",
"drupal/features": "^3.12",
"drupal/field_group": "~3.2",
"drupal/field_permissions": "^1.1",
"drupal/inline_entity_form": "~1.0-rc9",
"drupal/purge_users": "^3.0",
"drupal/redirect": "^1.6",
"drupal/search_api": "^1.19",
"drupal/typed_link": "^2.0",
"drupal/webform": "^6.0",
"drupal/webform_sugarcrm": "^2.1",
"drush/drush": "~10.3",
"webflo/drupal-finder": "^1.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"drupal/drupal-extension": "~4.0",
"drupal/core-dev": "^8.9",
"composer/installers": "~1.5",
"drupal/config_devel": "~1.2",
"guzzlehttp/guzzle": "~6.3",
"instaclick/php-webdriver": "^1.4.7",
"nikic/php-parser": "^3.1.5",
"openeuropa/behat-transformation-context": "~0.1",
"phpunit/phpunit": "^7 || ^8",
"symfony/dom-crawler": "^3.4 || ^4.4",
"openeuropa/task-runner-drupal-project-symlink": "^1.0"
},
"_readme": [
"Drupal for developers who need a quick installation of several features."
],
"scripts": {
"post-install-cmd": "./vendor/bin/run drupal:site-setup",
"post-update-cmd": "./vendor/bin/run drupal:site-setup"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"drupal-scaffold": {
"locations": {
"web-root": "./web"
}
},
"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"]
}
},
"autoload": {
"classmap": [
"scripts/composer/SetupWizard.php",
"scripts/composer/CheckSetupWizard.php"
]
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"cweagans/composer-patches": true
}
}
}