-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
93 lines (93 loc) · 3.14 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
{
"name": "contentacms/contenta-jsonapi-project",
"description": "Project template for Contenta CMS.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Mateu Aguiló Bosch",
"email": "mateu.aguilo.bosch@gmail.com"
},
{
"name": "Daniel Wehner",
"email": "dawehner@users.noreply.github.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"contentacms/contenta_jsonapi": "dev-8.x-3.x",
"drupal/core-composer-scaffold": "^9.0",
"composer/installers": "^1.2",
"drush/drush": "^9.0||^10.0",
"vlucas/phpdotenv": "^5.3",
"oomphinc/composer-installers-extender": "^2.0"
},
"require-dev": {
"drupal/core-dev": "^9.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"load.environment.php"
]
},
"scripts": {
"install:with-mysql": "scripts/install-mysql.sh",
"install:with-sqlite": "scripts/install-sqlite.sh",
"pre-install-cmd": "Drupal\\Composer\\Composer::ensureComposerVersion",
"pre-update-cmd": "Drupal\\Composer\\Composer::ensureComposerVersion",
"pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
"drupal-phpunit-upgrade-check": "Drupal\\Core\\Composer\\Composer::upgradePHPUnit",
"drupal-phpunit-upgrade": [
"@composer update phpunit/phpunit --with-dependencies --no-progress",
"@composer require phpspec/prophecy-phpunit:^2 --no-progress --no-suggest"
],
"post-update-cmd": [
"Drupal\\Composer\\Composer::generateMetapackages"
],
"phpcs": "phpcs --standard=core/phpcs.xml.dist --runtime-set installed_paths $($COMPOSER_BINARY config vendor-dir)/drupal/coder/coder_sniffer --",
"phpcbf": "phpcbf --standard=core/phpcs.xml.dist --runtime-set installed_paths $($COMPOSER_BINARY config vendor-dir)/drupal/coder/coder_sniffer --"
},
"extra": {
"composer-exit-on-patch-failure": true,
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"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"]
},
"enable-patching": true,
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"patches": {}
},
"config": {
"sort-packages": true
}
}