-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
114 lines (114 loc) · 3.6 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
{
"name": "drufony/drupal-skeleton",
"description": "Drupal 7 composer skeleton",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "http://drufony.github.io"
},
{
"type": "package",
"package": {
"name": "drupal/drupal",
"version": "7.34",
"dist": {
"type": "tar",
"url": "http://ftp.drupal.org/files/projects/drupal-7.34.tar.gz"
},
"source": {
"type": "git",
"url": "git://git.drupal.org/project/drupal.git",
"reference": "7.34"
},
"bin": [
"scripts/drupal.sh",
"scripts/password-hash.sh"
],
"require": {
"php": ">=5.2.4",
"ext-date": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-PDO": "*",
"ext-session": "*",
"ext-SimpleXML": "*",
"ext-SPL": "*",
"ext-xml": "*"
}
}
},
{
"type": "package",
"package": {
"name": "drupal/drupal",
"version": "7.x-dev",
"dist": {
"type": "tar",
"url": "http://ftp.drupal.org/files/projects/drupal-7.x-dev.tar.gz"
},
"source": {
"type": "git",
"url": "git://git.drupal.org/project/drupal.git",
"reference": "7.x"
},
"bin": [
"scripts/drupal.sh",
"scripts/password-hash.sh"
],
"require": {
"php": ">=5.2.4",
"ext-date": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-PDO": "*",
"ext-session": "*",
"ext-SimpleXML": "*",
"ext-SPL": "*",
"ext-xml": "*"
}
}
}
],
"authors": [
{
"name": "Benjamin Doherty",
"email": "[email protected]"
}
],
"require": {
"drupal/drupal": "7.34",
"drupal/minimal": "7.*@dev",
"drupal/standard": "7.*@dev",
"drufony/drupal-bridge": "~1.0"
},
"scripts": {
"post-install-cmd": [
"Bangpound\\Bridge\\Drupal\\Composer\\ScriptHandler::installDrupal"
],
"post-update-cmd": [
"Bangpound\\Bridge\\Drupal\\Composer\\ScriptHandler::installDrupal"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"installer-paths": {
"docroot/sites/all/modules/{$name}/": ["type:drupal-module"],
"docroot/sites/all/themes/{$name}/": ["type:drupal-theme"],
"docroot/sites/all/libraries/{$name}/": ["type:drupal-library"],
"docroot/profiles/{$name}/": ["type:drupal-profile"],
"docroot/sites/all/drush/{$name}/": ["type:drupal-drush"]
},
"drupal-root": "docroot/"
}
}