-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.21 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
{
"name": "drupal/composer",
"description": "Use Composer, the PHP package management system, from Drush.",
"homepage": "http://drupal.org/project/composer",
"license": "GPL-2.0",
"type": "drupal-drush",
"authors": [
{
"name": "Rob Loach",
"homepage": "http://robloach.net"
}
],
"support": {
"issues": "http://drupal.org/project/issues/composer",
"source": "http://drupalcode.org/project/composer.git"
},
"require": {
"php": ">=5.4",
"composer/composer": "1.0.0-alpha9",
"composer/installers": "~1.0.20",
"drupal/drupal": "~8.0"
},
"config": {
"preferred-install": "dist"
},
"extra": {
"installer-paths": {
"../web/": ["type:drupal-core"],
"../web/modules/contrib/{$name}": ["type:drupal-module"]
}
},
"repositories": [
{
"type": "composer",
"url": "http://packagist.drupal-composer.org"
}
],
"autoload": {
"psr-4": {
"CustomLoader\\": "script/"
}
},
"scripts": {
"post-install-cmd": [
"CustomLoader\\Install::symlinks",
"CustomLoader\\Install::shared"
],
"post-update-cmd": [
"CustomLoader\\Install::symlinks",
"CustomLoader\\Install::shared"
]
}
}