-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
104 lines (104 loc) · 2.97 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
{
"authors": [
{
"email": "[email protected]",
"name": "David Brown",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"config": {
"sort-packages": true
},
"conflict": {
"drupal/drupal": "*"
},
"description": "Project template for Drupal 8 Pacifica projects using composer",
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-paths": {
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"patchLevel": {
"drupal/core": "-p2"
}
},
"license": "LGPL-3.0-or-later",
"minimum-stability": "dev",
"name": "pacifica/drupal-project",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=7.0.8",
"composer/installers": "^1.2",
"drupal/core-composer-scaffold": "^8.8",
"drupal/core-project-message": "^8.8",
"drupal/core-recommended": "^8.8",
"drush/drush": "^10",
"pacifica/pacifica_profiles": "^0.1"
},
"require-dev": {
"drupal/core-dev": "^8.8"
},
"scripts": {
"configure-drupal-vm": [
"docker cp scripts/drupal-vm.config.yml drupal-vm:/etc/ansible/drupal-vm/local.config.yml",
"docker exec drupal-vm ansible-playbook /etc/ansible/drupal-vm/provisioning/playbook.yml"
],
"nuke-testing": [
"@stop-drupal-vm",
"@remove-drupal-vm"
],
"remove-drupal-vm": [
"docker rm drupal-vm"
],
"setup-testing": [
"@start-drupal-vm",
"@configure-drupal-vm"
],
"start-drupal-vm": [
"php -r \"shell_exec('docker run --name drupal-vm -p 3306:3306 -p 8080:81 -d -v /sys/fs/cgroup:/sys/fs/cgroup:ro --privileged -v '.getcwd().':/var/www/drupalvm/drupal:rw geerlingguy/drupal-vm');\""
],
"stop-drupal-vm": [
"docker stop drupal-vm"
]
},
"type": "project"
}