-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
131 lines (131 loc) · 4.88 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal 9 projects with a relocated document root",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"require": {
"php": ">=7.4.0",
"composer/installers": "^2",
"cweagans/composer-patches": "^1.6.5",
"drupal/admin_toolbar": "^3",
"drupal/better_exposed_filters": "^6.0",
"drupal/codemirror_editor": "1.x-dev",
"drupal/component_library": "^1@dev",
"drupal/config_ignore": "^2.3",
"drupal/core": "^9.2@alpha",
"drupal/core-composer-scaffold": "^9.2@rc",
"drupal/core-recommended": "^9.2@rc",
"drupal/default_content": "^2@alpha",
"drupal/entity_clone": "@dev",
"drupal/gin": "^3@beta",
"drupal/gin_lb": "^1@beta",
"drupal/gin_toolbar": "^1@beta",
"drupal/image_style_quality": "^1.4",
"drupal/pathauto": "^1.11",
"drupal/redirect": "^1.6",
"drupal/tailwindcss_utility": "^2@dev",
"drush/drush": "^11",
"furf/jquery-ui-touch-punch": "dev-master",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"chi-teck/drupal-coder-extension": "^1.0",
"drupal/config_inspector": "^2",
"drupal/core-dev": "^9.2@rc",
"drupal/devel": "^5.0",
"drupal/stage_file_proxy": "^1.1",
"ergebnis/phpstan-rules": "^1",
"mglaman/drupal-check": "^1.1",
"phpspec/prophecy-phpunit": "^2",
"phpstan/phpstan-strict-rules": "^1",
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master",
"symfony/phpunit-bridge": "^5.3"
},
"conflict": {
"drupal/drupal": "*"
},
"replace": {
"drupal/ctools": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4.1"
},
"preferred-install": "dist",
"process-timeout": 36000,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true
}
},
"autoload": {
"files": ["load.environment.php"]
},
"scripts": {
"phpstan": "phpstan analyse --",
"si": "drush sql-drop -y && drush site:install -v install_profile --existing-config --yes --sites-subdir=default --account-name=admin-user-default",
"phpcs": "phpcs --",
"phpcbf": "phpcbf --",
"lint": "find web/modules/custom web/themes/custom -name '*.php' -exec php -l {} \\;",
"webserver": "cd web && php -S 0.0.0.0:8888 .ht.router.php",
"test": "phpunit --list-tests web/modules/custom && DRUPAL_DEPRECATION_SKIP_FILE=$(pwd)/.skipped_deprecations.json phpunit --verbose web/modules/custom && phpunit --list-tests web/profiles && DRUPAL_DEPRECATION_SKIP_FILE=$(pwd)/.skipped_deprecations.json phpunit --verbose web/profiles"
},
"extra": {
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches-file": "composer.patches.json",
"enable-patching": true,
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/.htaccess": false,
"[web-root]/update.php": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/web.config": false,
"[web-root]/sites/default/services.yml": "web/core/assets/scaffold/files/default.services.yml",
"[web-root]/sites/development.services.yml": 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"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "furf/jquery-ui-touch-punch",
"version": "dev-master",
"type": "drupal-library",
"dist": {
"url": "https://github.com/furf/jquery-ui-touch-punch/archive/master.zip",
"type": "zip"
}
}
}
]
}