-
Notifications
You must be signed in to change notification settings - Fork 121
/
composer.json
68 lines (68 loc) · 1.83 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
{
"name": "platformsh/cli",
"description": "Platform.sh CLI",
"license": "MIT",
"require": {
"php": ">=5.5.9",
"doctrine/cache": "~1.5",
"guzzlehttp/guzzle": "^5.3",
"guzzlehttp/ringphp": "^1.1",
"platformsh/console-form": ">=0.0.37 <2.0",
"platformsh/client": ">=0.87.0 <2.0",
"symfony/console": "^3.0 >=3.2",
"symfony/yaml": "^3.0 || ^2.6",
"symfony/finder": "^3.0",
"symfony/filesystem": "^3.0",
"symfony/process": "^3.0 >=3.4",
"stecman/symfony-console-completion": "^0.11",
"symfony/event-dispatcher": "^3.0",
"padraic/phar-updater": "^1.0",
"symfony/dependency-injection": "^3.1",
"symfony/config": "^3.1",
"paragonie/random_compat": "^2.0",
"ext-json": "*",
"composer/ca-bundle": "^1.3",
"khill/php-duration": "^1.1",
"giggsey/libphonenumber-for-php": "^8.13",
"symfony/polyfill-mbstring": "^1.19",
"symfony/polyfill-iconv": "^1.19"
},
"suggest": {
"drush/drush": "For Drupal projects"
},
"autoload": {
"files": ["constants.php"],
"psr-4": {
"Platformsh\\Cli\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Platformsh\\Cli\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^4.3 !=4.8.0",
"drush/drush": "^8.0"
},
"authors": [
{
"name": "Bojan Zivanovic"
},
{
"name": "Patrick Dawkins"
}
],
"bin": [
"bin/platform"
],
"config": {
"platform": {
"php": "5.5.9"
}
},
"scripts": {
"update-countries": "php scripts/update-countries.php",
"update-known-hosts": "php scripts/update-known-hosts.php"
}
}