-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
52 lines (52 loc) · 1.53 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
{
"name": "lullabot/drainpipe",
"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\\Drainpipe\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Lullabot\\Drainpipe\\Tests\\Functional\\": "tests/src/functional/"}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"composer-plugin-api": "^2.0",
"drush/drush": "^11|^12|^13",
"symfony/yaml": "^6|^7",
"twig/twig": "^3",
"vlucas/phpdotenv": "^4|^5"
},
"require-dev": {
"composer/composer": "^2.8.2",
"phpunit/phpunit": "^9.6.21"
},
"extra": {
"class": [
"\\Lullabot\\Drainpipe\\ScaffoldInstallerPlugin",
"\\Lullabot\\Drainpipe\\BinaryInstallerPlugin"
],
"drupal-scaffold": {
"gitignore": true,
"file-mapping": {
"[project-root]/.env": {
"mode": "replace",
"path": "scaffold/env/env",
"overwrite": false
}
}
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"lullabot/drainpipe": true
}
},
"archive": {
"exclude": ["/.github", "/.yarn", "/drainpipe-dev", "/metapackages"]
}
}