-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·105 lines (105 loc) · 3.63 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
{
"name": "ua-web-team/shepherd",
"description": "University of Adelaide Shepherd site management system.",
"type": "project",
"license": "MIT",
"repositories": [
{"type": "git", "url": "git@github.com:universityofadelaide/shepherd-drupal-scaffold.git"},
{"type": "composer", "url": "https://packages.drupal.org/8"}
],
"require": {
"php": "^7.4",
"composer-plugin-api": "^2.0",
"composer/installers": "^1.2",
"cweagans/composer-patches": "~1.0",
"drupal/config_ignore": "^3.0",
"drupal/core": "^9.3",
"drupal/core-composer-scaffold": "^9.3",
"drupal/entity_reference_revisions": "1.*",
"drupal/field_group": "3.*",
"drupal/group": "1.*",
"drupal/key_value_field": "1.*",
"drupal/log_stdout": "1.*",
"drupal/memcache": "^2.0",
"drupal/plugin": "^2.9",
"drupal/r4032login": "2.*",
"drupal/route_condition": "^2.0",
"drupal/token": "1.*",
"drupal/views_bulk_operations": "^4.0",
"drush/drush": "^10",
"universityofadelaide/openshift-client": "dev-develop",
"universityofadelaide/shepherd-drupal-scaffold": "^5.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"drupal/core-dev": "^9.3",
"drupal/devel": "^4.1",
"mglaman/phpstan-drupal": "^1.1.13",
"phpspec/prophecy-phpunit": "^2",
"phpstan/phpstan-deprecation-rules": "^1.0",
"roave/security-advisories": "dev-latest",
"weitzman/drupal-test-traits": "^1.5"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin/",
"sort-packages": true,
"discard-changes": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"cweagans/composer-patches": true,
"universityofadelaide/shepherd-drupal-scaffold": true,
"drupal/core-composer-scaffold": true,
"drupal-composer/drupal-scaffold": true
}
},
"autoload": {
"psr-4": {
"UniversityOfAdelaide\\ShepherdDrupalScaffold\\actions\\": "scripts/composer/"
}
},
"scripts": {
"shepherd-scaffold": "UniversityOfAdelaide\\ShepherdDrupalScaffold\\Plugin::scaffold",
"post-install-cmd": [
"@shepherd-scaffold"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"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"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "./web/"
},
"file-mapping": {
"[web-root]/sites/default/settings.php": {
"mode": "replace",
"path": "web/core/assets/scaffold/files/default.settings.php",
"overwrite": false
}
}
}
}
}