-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
66 lines (65 loc) · 2.66 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
{
"name": "lullabot/drainpipe-dev",
"description": "An automated build tool to allow projects to have a set standardized operations scripts.",
"license": "GPL-2.0-or-later",
"type": "composer-plugin",
"autoload": {
"psr-4": {"Lullabot\\DrainpipeDev\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Lullabot\\DrainpipeDev\\Tests\\Functional\\": "tests/src/functional/"}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"composer-plugin-api": "^2.0",
"behat/mink": "^1.12.0",
"behat/mink-browserkit-driver": "^2.2.0",
"davidrjonas/composer-lock-diff": "^1.7",
"drupal/coder": "^8.3.28",
"lullabot/drainpipe": "*",
"mglaman/phpstan-drupal": "^2.0.0",
"mikey179/vfsstream": "^1.6.12",
"mockery/mockery": "^1.6.12",
"phpspec/prophecy-phpunit": "^2",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpunit/phpunit": "^9|^10",
"symfony/phpunit-bridge": "^6|^7",
"symfony/yaml": "^6|^7",
"tijsverkoyen/convert-to-junit-xml": "^1.11.0",
"vincentlanglet/twig-cs-fixer": "^3.4.0"
},
"require-dev": {
"composer/composer": "^2.8.3"
},
"bin": [
"bin/drainpipe-convert-to-junit-xml"
],
"extra": {
"class": [
"\\Lullabot\\DrainpipeDev\\DevBinaryInstallerPlugin"
],
"drupal-scaffold": {
"gitignore": true,
"file-mapping": {
"[project-root]/nightwatch.conf.js": "scaffold/nightwatch/nightwatch.conf.js",
"[web-root]/sites/chrome/settings.php": "scaffold/nightwatch/chrome.settings.php",
"[web-root]/sites/firefox/settings.php": "scaffold/nightwatch/firefox.settings.php",
"[web-root]/sites/sites.php": "scaffold/nightwatch/sites.php",
"[project-root]/.ddev/docker-compose.selenium.yaml": "scaffold/nightwatch/docker-compose.selenium.yaml",
"[project-root]/test/nightwatch/example.nightwatch.js": "scaffold/nightwatch/example.nightwatch.js",
"[project-root]/test/nightwatch/vrt/.gitignore": "scaffold/nightwatch/vrt.gitignore",
"[project-root]/phpcs.xml.dist": "scaffold/phpcs.xml.dist",
"[project-root]/phpstan.neon.dist": "scaffold/phpstan.neon.dist",
"[project-root]/.twig-cs-fixer.dist.php": "scaffold/.twig-cs-fixer.dist.php"
}
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"lullabot/drainpipe": true
}
}
}