-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
121 lines (121 loc) · 3.86 KB
/
composer.json
File metadata and controls
121 lines (121 loc) · 3.86 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
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
121
{
"name": "balintbrews/drupal-canvas-dev",
"description": "An opinionated development environment for brewing Drupal Canvas.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/balintbrews/drupal-canvas-dev",
"support": {
"docs": "https://github.com/balintbrews/drupal-canvas-dev#readme",
"chat": "https://drupal.org/slack"
},
"repositories": {
"canvas": {
"type": "path",
"url": "web/modules/contrib/canvas"
},
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"composer/installers": "^2.3",
"drupal/admin_toolbar": "^3.6",
"drupal/ai_agents": "^1.2",
"drupal/ai_agents_test": "^1.0@alpha",
"drupal/ai_provider_openai": "^1.1",
"drupal/canvas": "1.x-dev",
"drupal/core-composer-scaffold": "~11.2.0",
"drupal/core-dev": "~11.2.0",
"drupal/core-project-message": "~11.2.0",
"drupal/core-recipe-unpack": "~11.2.0",
"drupal/core-recommended": "~11.2.0",
"drupal/cva": "^1.0@beta",
"drupal/jsonapi_menu_items": "^1.2",
"drupal/simple_oauth": "^6.0",
"drush/drush": "^13.6"
},
"require-dev": {
"devizzent/cebe-php-openapi": "^1.1.4",
"drupal/ai": "^1.2.1",
"drupal/default_content": "^2.0@alpha",
"drupal/metatag": "^2.",
"drupal/pathauto": "^1.13",
"drupal/search_api": "^1",
"jangregor/phpstan-prophecy": "^2.2.0",
"league/openapi-psr7-validator": "^0.22.0",
"mglaman/phpstan-drupal": "^2.0.9",
"phpstan/phpstan": "^2.1.17",
"phpstan/phpstan-phpunit": "^2.0.7",
"phpstan/phpstan-strict-rules": "^2",
"webflo/drupal-finder": "^1.3.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"drupal/core-recipe-unpack": true,
"php-http/discovery": true,
"php-tuf/composer-integration": true,
"phpstan/extension-installer": true,
"tbachert/spi": true
},
"sort-packages": true
},
"scripts": {
"pre-install-cmd": [
"./scripts/check-repo.sh",
"./scripts/check-repo-mercury.sh"
]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/sites/development.services.yml": false,
"[project-root]/recipes/README.txt": false
}
},
"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/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"recipes/{$name}": [
"type:drupal-recipe"
]
}
}
}