-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (56 loc) · 2.23 KB
/
composer.json
File metadata and controls
60 lines (56 loc) · 2.23 KB
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
{
"name": "drupal/program",
"type": "drupal-module",
"description": "Drupal module for creating attactions at an event",
"keywords": ["Drupal, COD", "Events"],
"homepage": "https://github.com/drupal-cod/program",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"extra": {
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
}
},
"require":{
"drupal/field_group": "1.0-rc6",
"drupal/flag": "4.x-dev"
},
"require-dev": {
"drupal-composer/drupal-scaffold": "^2.0.0",
"composer/installers": "^1.0.20",
"drupal/core": "^8.0",
"drush/drush": "^8.0",
"drupal/drupal-extension": "^3.1",
"behat/behat": "^3.0",
"drupal/coder": "^2.0",
"lakion/mink-debug-extension": "^1.0.3",
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "~2",
"se/selenium-server-standalone": "^2.53"
},
"scripts": {
"post-install-cmd": [
"mkdir -p docroot/modules/program && rsync -a . docroot/modules/program --exclude \".idea\" --exclude bin --exclude \".git\" --exclude \".gitignore\" --exclude docroot --exclude \"*.make\" --exclude \".travis.yml\" --exclude vendor && rm -fr modules/contrib themes/contrib"
],
"post-update-cmd": [
"mkdir -p docroot/modules/program && rsync -a . docroot/modules/program --exclude \".idea\" --exclude bin --exclude \".git\" --exclude \".gitignore\" --exclude docroot --exclude \"*.make\" --exclude \".travis.yml\" --exclude vendor && rm -fr modules/contrib themes/contrib"
],
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\PHPUnit\\": "tests/phpunit/src/"
}
}
}