-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
120 lines (120 loc) · 3.08 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "wunderio/drupal7-project",
"description": "Project template for Drupal 7 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/7"
},
{
"type": "git",
"url": "https://github.com/wunderio/drupal-ping"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-xml": "*",
"composer/installers": "^1.12",
"composer/semver": "^1.4",
"cweagans/composer-patches": "^1.7",
"drupal-composer/preserve-paths": "^0.1",
"drupal/composer_autoloader": "^1.3",
"drupal/drupal": "^7.87",
"drupal/warden": "^2.0",
"drush/drush": "^8.4",
"symfony/filesystem": "~2.7 || ^3",
"webflo/drupal-finder": "^1.2",
"wunderio/drupal-ping": "7.x-dev"
},
"conflict": {
"drupal/core": "8.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"koodimonni/composer-dropin-installer": true,
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal-composer/preserve-paths": true
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"DrupalProject\\composer\\ScriptHandler::removeInternalFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"DrupalProject\\composer\\ScriptHandler::removeInternalFiles"
],
"post-create-project-cmd": [
"DrupalProject\\composer\\ScriptHandler::removeInternalFiles"
]
},
"extra": {
"dropin-paths": {
"web/": [
"type:web-dropin"
]
},
"installer-paths": {
"web/": [
"type:drupal-core"
],
"web/profiles/{$name}/": [
"type:drupal-profile"
],
"web/sites/all/drush/{$name}/": [
"type:drupal-drush"
],
"web/sites/all/libraries/{$name}/": [
"type:drupal-library"
],
"web/sites/all/modules/contrib/{$name}/": [
"type:drupal-module"
],
"web/sites/all/themes/contrib/{$name}/": [
"type:drupal-theme"
]
},
"patches-install-hooks": true,
"patches": {
"cweagans/composer-patches": {
"Call the preserve paths hooks": "https://github.com/jcnventura/composer-patches/compare/1.x...jcnventura:fix-preserve-paths.diff"
}
},
"composer-exit-on-patch-failure": true,
"composer-patches-skip-reporting": true,
"preserve-paths": [
"web/sites",
"web/.dockerignore"
]
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"drupal/coder": "^8.3",
"phpcompatibility/php-compatibility": "*",
"squizlabs/php_codesniffer": "^3.5"
}
}