-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·107 lines (106 loc) · 3.19 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
{
"name": "escuriola/drupalcamp",
"description": "DDD Escuriola Project",
"type": "project",
"license": "EUPL-1.2",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"composer/installers": "^1.12",
"cweagans/composer-patches": "^1.7",
"drupal/core": "^10.1",
"drupal/core-composer-scaffold": "^10",
"drupal/ddd": "dev-main",
"drupal/devel": "^5.1",
"drupal/http_client_manager": "^9.3",
"drupal/pathauto": "^1.10",
"drupal/search_api": "^1.28",
"drupal/search_api_autocomplete": "^1.7",
"drupal/search_api_solr": "^4.2",
"drupal/search_api_sorts": "^1.1",
"drupal/twig_tweak": "^3.2",
"drush/drush": "^11.3",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"drupal/core-dev": "^10.1",
"drupal/drupal-extension": "^5.0",
"drupal/environment_indicator": "^4.0",
"kint-php/kint": "^5.0",
"phpspec/prophecy-phpunit": "^1 || ^2"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "path",
"url": "lib/modules/custom/*"
}
],
"extra": {
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "./web"
}
},
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"_readme": [
"Explicit requirement of drupal/inline_entity_form module due to incompatibility of path in RC12."
]
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true,
"cweagans/composer-patches": true,
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/console-extend-plugin": true,
"openeuropa/composer-artifacts": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"drupalcamp\\": "./app/bounded_context/drupalcamp/src",
"drupalcamp\\Tests\\": "./app/bounded_context/drupalcamp/tests"
}
}
}