-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.63 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.63 KB
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
{
"name": "boxuk/org-enrichment-tech-test",
"description": "Take-home technical test: Drupal 11 module integrating the Kestrel Data Organisation Profile API.",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=8.3",
"composer/installers": "^2.3",
"drupal/core-composer-scaffold": "^11.1",
"drupal/core-recommended": "^11.1",
"drush/drush": "^13"
},
"require-dev": {
"drupal/core-dev": "^11.1",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"Drupal\\org_enrichment\\": "web/modules/custom/org_enrichment/src/"
}
},
"extra": {
"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"]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/runtime": true,
"tbachert/spi": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}