-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
66 lines (66 loc) · 1.65 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
{
"name": "davidbarratt/drupal7",
"description": "Drupal 7 Platform for David Barratt",
"license": "AGPL-3.0",
"repositories": [
{
"type": "composer",
"url": "http://static.drupal-packagist.org/v0.2.0/"
},
{
"type": "vcs",
"url": "git@github.com:davidbarratt/davidwbarratt.git"
},
{
"type": "vcs",
"url": "http://git.drupal.org/project/insert_field.git"
},
{
"type": "package",
"package": {
"name": "acdvorak/jquery.caret",
"version": "1.5.2",
"source": {
"url": "git@github.com:acdvorak/jquery.caret.git",
"type": "git",
"reference": "v1.5.2"
}
}
}
],
"require": {
"mnsami/composer-custom-directory-installer": "1.0.*",
"davidbarratt/drupal-structure": "1.0.*@alpha",
"davidbarratt/custom-installer": "1.0.*@alpha",
"davidbarratt/davidwbarratt": "dev-develop"
},
"require-dev": {
"drupal/filefield_sources": "7.*",
"drupal/field_group": "7.*",
"acdvorak/jquery.caret": "1.5.*",
"drupal/insert_field": "dev-7.x-1.x"
},
"extra": {
"custom-installer": {
"drupal-core": "core/",
"drupal-site": "sites/{$name}/",
"drupal-module": "modules/{$name}/"
},
"installer-paths":{
"core/": [
"drupal/drupal"
],
"libraries/jquery.caret/": [
"acdvorak/jquery.caret"
]
}
},
"scripts": {
"post-install-cmd": [
"DavidBarratt\\DrupalStructure\\ScriptHandler::postUpdate"
],
"post-update-cmd": [
"DavidBarratt\\DrupalStructure\\ScriptHandler::postUpdate"
]
}
}