forked from platformsh/legacy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.12 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
{
"name": "platformsh/cli",
"description": "Platform.sh CLI",
"license": "MIT",
"require": {
"doctrine/cache": "~1.4.2",
"platformsh/client": "0.1.22",
"symfony/console": ">= 2.5.2 < 2.7.0",
"symfony/yaml": "~2.5",
"symfony/finder": "~2.5",
"symfony/filesystem": "~2.5",
"symfony/options-resolver": "~2.5",
"symfony/process": "~2.5",
"stecman/symfony-console-completion": "0.5.1",
"herrera-io/phar-update": "^2.0",
"symfony/event-dispatcher": "^2.7"
},
"suggest": {
"drush/drush": "For Drupal projects"
},
"autoload": {
"psr-4": {
"Platformsh\\Cli\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Platformsh\\Cli\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "4.3.*",
"mikey179/vfsStream": "~1.4",
"drush/drush": "~7.0.0"
},
"authors": [
{
"name": "Bojan Zivanovic"
},
{
"name": "Patrick Dawkins"
}
],
"bin": [
"platform"
]
}