-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.5 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
{
"name": "sweetchuck/robo-drush",
"description": "Drush related Robo tasks",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"sweetchuck/git-hooks": true
},
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"consolidation/robo": "^2.0",
"sweetchuck/utils": "1.x-dev",
"symfony/yaml": ">=2.0"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.1",
"codeception/module-filesystem": "^1.0",
"squizlabs/php_codesniffer": "^3.5",
"stecman/symfony-console-completion": "^0.11.0",
"sweetchuck/codeception-module-robo-task-runner": "1.x-dev",
"sweetchuck/git-hooks": "2.x-dev",
"sweetchuck/lint-report": "1.x-dev",
"sweetchuck/robo-git": "1.x-dev",
"sweetchuck/robo-phpcs": "1.x-dev",
"symfony/error-handler": "^5.4",
"symfony/var-dumper": "^5.4",
"webmozart/path-util": "^2.3"
},
"autoload": {
"psr-4": {
"Sweetchuck\\Robo\\Drush\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\Robo\\Drush\\Tests\\Unit\\": "tests/unit/",
"Sweetchuck\\Robo\\Drush\\Tests\\Acceptance\\": "tests/acceptance/",
"Sweetchuck\\Robo\\Drush\\Tests\\": "tests/_support/"
}
}
}