-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
113 lines (113 loc) · 3.24 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
{
"name": "pantheon-systems/site-audit-tool",
"description": "Drush global extension to run Site Audit checks on Drush 8 and 9",
"type": "drupal-drush",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Greg Anderson"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"composer/installers": "^1.2",
"drupal/core-composer-scaffold": "^8.8.1",
"drupal/core-recommended": "^8.8",
"drupal/php": "^1",
"drush/drush": "10.4.0 || 11.x-dev",
"g1a/composer-test-scenarios": "^3.0.2",
"pantheon-systems/drupal-integrations": "^8",
"symfony/filesystem": "^3.4.28",
"webflo/drupal-finder": "^1.1.0",
"webmozart/path-util": "^2.3",
"yoast/phpunit-polyfills": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.11"
},
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"g1a/composer-test-scenarios": true
}
},
"autoload": {
"psr-4": {
"SiteAudit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SiteAudit\\": "tests/src/"
}
},
"scripts": {
"release": [
"release VERSION"
],
"test": "phpunit --color=always",
"drush": "drush"
},
"extra": {
"installer-paths": {
"sut/web/core": ["type:drupal-core"],
"sut/web/libraries/{$name}": ["type:drupal-library"],
"sut/web/modules/contrib/{$name}": ["type:drupal-module"],
"sut/web/profiles/contrib/{$name}": ["type:drupal-profile"],
"sut/web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"allowed-packages": [
"pantheon-systems/drupal-integrations"
],
"locations": {
"web-root": "./sut/web"
},
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false
}
},
"scenarios": {
"drush8": {
"require-dev": {
"drush/drush": "^8.3.3"
},
"config": {
"platform": {
"php": "7.0.8"
}
}
},
"drupal9": {
"require-dev": {
"drupal/core-recommended": "^9@rc",
"drupal/core": "^9@rc",
"drupal/core-composer-scaffold": "^9@rc",
"pantheon-systems/drupal-integrations": "^9"
},
"config": {
"platform": {
"php": "7.3"
}
}
}
},
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}