forked from mattschaff/phillyresourcemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 4.12 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
{
"name": "drupal/drupal",
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
"type": "project",
"license": "GPL-2.0-or-later",
"require": {
"composer/installers": "^1.0.24",
"wikimedia/composer-merge-plugin": "^1.4",
"drupal/admin_toolbar": "^1.26",
"drupal/geocoder": "^2.1",
"drupal/address": "^1.4",
"drupal/geolocation": "^1.11",
"drupal/paragraphs": "^1.6",
"drupal/time_field": "^1.10",
"drupal/inline_entity_form": "^1.0@RC",
"drupal/better_exposed_filters": "^3.0@alpha",
"drupal/conditional_fields": "^1.0@alpha",
"drupal/field_group": "^1.0",
"drupal/devel": "^2.0",
"drupal/tvi": "^1.0@beta",
"drupal/twig_tweak": "^2.1",
"drupal/mail_login": "^1.0",
"drupal/views_field_view": "^1.0@beta",
"drupal/views_ajax_history": "^1.0",
"twig/twig": "1.37.1",
"cweagans/composer-patches": "^1.6",
"drupal/views_infinite_scroll": "^1.5"
},
"replace": {
"drupal/core": "^8.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"autoloader-suffix": "Drupal8"
},
"extra": {
"_readme": [
"By default Drupal loads the autoloader from ./vendor/autoload.php.",
"To change the autoloader you can edit ./autoload.php.",
"This file specifies the packages.drupal.org repository.",
"You can read more about this composer repository at:",
"https://www.drupal.org/node/2718229"
],
"merge-plugin": {
"include": [
"core/composer.json"
],
"recurse": true,
"replace": false,
"merge-extra": false
},
"installer-paths": {
"core": ["type:drupal-core"],
"modules/contrib/{$name}": ["type:drupal-module"],
"profiles/contrib/{$name}": ["type:drupal-profile"],
"themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"],
"modules/custom/{$name}": ["type:drupal-custom-module"],
"themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"patches": {
"drupal/contextual": {
"Contextual links destination uses internal paths, not path aliases": "https://www.drupal.org/files/issues/2639822-8.patch"
},
"drupal/views_ajax_history": {
"Unchecking checkboxes (BEF) do not remove values from URL": "https://www.drupal.org/files/issues/2018-11-28/remove_checkbox_values_when_unchecked_3007027-3.patch"
},
"drupal/geolocation": {
"Proximity Field - Use HTML5 Geolocation as source": "https://www.drupal.org/files/issues/2018-06-15/2879171-36-geolocation-html5-proximity.patch"
}
}
},
"autoload": {
"psr-4": {
"Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
}
},
"scripts": {
"pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
"post-autoload-dump": "Drupal\\Core\\Composer\\Composer::ensureHtaccess",
"post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
"post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
"drupal-phpunit-upgrade-check": "Drupal\\Core\\Composer\\Composer::upgradePHPUnit",
"drupal-phpunit-upgrade": "@composer update phpunit/phpunit phpspec/prophecy symfony/yaml --with-dependencies --no-progress",
"phpcs": "phpcs --standard=core/phpcs.xml.dist --runtime-set installed_paths $($COMPOSER_BINARY config vendor-dir)/drupal/coder/coder_sniffer --",
"phpcbf": "phpcbf --standard=core/phpcs.xml.dist --runtime-set installed_paths $($COMPOSER_BINARY config vendor-dir)/drupal/coder/coder_sniffer --"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
]
}