-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (79 loc) · 2.85 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
{
"name": "lastcall/drupal-scaffold",
"description": "Scaffolding for an enterprise scale Drupal build",
"license": "GPL-2.0+",
"authors": [
{
"name": "Rob Bayliss",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "~1.0",
"hirak/prestissimo": "^0.3",
"drupal/core": "^8.7"
},
"require-dev": {
"drupal/console": "^1.0.1",
"drupal/coder": "^8.2.12",
"drupal/drupal-extension": "^3.3",
"squizlabs/php_codesniffer": "^2.0",
"mikey179/vfsStream": "^1.2",
"phpunit/phpunit": ">=4.8.35 <5",
"drush/drush": "^10.0",
"lastcall/mannequin-drupal": "~1.0",
"lastcall/composer-upstream-files": "^1.1.1"
},
"autoload": {
"psr-4": {
"Project\\": "src/"
}
},
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/themes/contrib/{$name}": ["type:drupal-theme"]
},
"patches": { },
"upstream-files": {
"tokens": {
"webroot": "./web",
"scaffold": "https://raw.githubusercontent.com/LastCallMedia/Drupal-Scaffold/master"
},
"manifests": [
"{{scaffold}}/src/Resources/manifests/drupal.json",
"{{scaffold}}/src/Resources/manifests/drops.json",
"{{scaffold}}/src/Resources/manifests/scaffold.json",
"{{scaffold}}/src/Resources/manifests/docs.json"
]
}
},
"scripts": {
"build": "node_modules/.bin/gulp build",
"build:watch": "node_modules/.bin/gulp build:watch",
"lint": ["@lint:composer", "@lint:phpcs", "@lint:eslint"],
"lint:composer": "@composer validate",
"lint:phpcs": "phpcs",
"lint:eslint": "node_modules/.bin/eslint .",
"test": ["@test:phpunit", "@test:behat", "@test:wdio"],
"test:phpunit": "phpunit",
"test:behat": "behat",
"test:wdio": "node_modules/.bin/wdio wd/wdio.conf.js",
"site:import": ["bin/refresh-local-pantheon", "cd web; php private/scripts/deploy-steps.php; cd -"],
"post-package-install": "Project\\ComposerHandler::postPackageInstall",
"post-package-update": "Project\\ComposerHandler::postPackageUpdate",
"post-create-project": "Project\\ComposerHandler::postCreateProject",
"pre-autoload-dump": "Project\\ComposerHandler::preAutoloadDump"
}
}