-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
74 lines (74 loc) · 2.2 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
{
"name": "acquia/acquia-cms-starterkit",
"type": "project",
"description": "Acquia CMS starterkit cli command.",
"keywords": [
"cli",
"console",
"drupal",
"acquia_cms",
"starterkit"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
},
{
"name": "Vishal Khode",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"acquia/drupal-environment-detector": "^1.6",
"composer/composer": "^2.7.0",
"stecman/symfony-console-completion": "^0.12.1 || ^0.13.0",
"symfony/config": "^6.2 || ^7.0",
"symfony/console": "^6.2 || ^7.0",
"symfony/dependency-injection": "^6.2 || ^7.0",
"symfony/filesystem": "^6.2 || ^7.0",
"symfony/http-client": "^6.2 || ^7.0",
"symfony/http-kernel": "^6.2 || ^7.0",
"symfony/process": "^6.2 || ^7.0",
"symfony/yaml": "^6.2 || ^7.0"
},
"require-dev": {
"acquia/coding-standards": "^1.0 || ^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"ergebnis/composer-normalize": "~2.15.0",
"phpro/grumphp-shim": "^1.5",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.4 || ^10"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"mnsami/composer-custom-directory-installer": true,
"php-http/discovery": true,
"phpro/grumphp-shim": true,
"phpstan/extension-installer": true,
"webdriver-binary/binary-chromedriver": true
}
},
"autoload": {
"psr-4": {
"AcquiaCMS\\Cli\\": "src/"
}
},
"repositories": {
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": [
"bin/acms"
]
}