forked from acquia/drupal-environment-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name": "acquia/drupal-environment-detector",
"description": "Provides common methods for detecting the current Acquia environment",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"require-dev": {
"acquia/coding-standards": "^2.0.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpunit/phpunit": "^9.1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4"
},
"sort-packages": true
},
"conflict": {
"acquia/blt": ">=12.0.0 <13.5.2"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"phpcodesniffer-search-depth": "4"
},
"autoload": {
"psr-4": {
"Acquia\\DrupalEnvironmentDetector\\": "src/",
"Acquia\\DrupalEnvironmentDetector\\Tests\\": "tests/"
}
}
}