forked from EasyEngine/easyengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.79 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "easyengine/easyengine",
"description": "The command line interface for EasyEngine",
"keywords": [
"cli",
"easyengine"
],
"homepage": "https://easyengine.io",
"license": "MIT",
"support": {
"issues": "https://github.com/easyengine/easyengine/issues",
"source": "https://github.com/easyengine/easyengine",
"docs": "https://easyengine.io/docs/"
},
"bin": [
"bin/ee"
],
"config": {
"platform": {
"php": "7.1"
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0",
"composer/composer": "1.7.3",
"composer/semver": "1.4.2",
"easyengine/admin-tools-command": "v1.0.4",
"easyengine/auth-command": "v1.0.1",
"easyengine/config-command": "v1.0.1",
"easyengine/cron-command": "v1.0.1",
"easyengine/log-command": "v1.0.0",
"easyengine/mailhog-command": "v1.0.1",
"easyengine/site-command": "v2.2.9",
"easyengine/site-type-wp": "v1.0.6",
"easyengine/site-type-php": "v1.0.6",
"easyengine/service-command": "v1.0.6",
"easyengine/shell-command" : "v1.0.1",
"justinrainbow/json-schema": "5.2.7",
"monolog/monolog": "1.24.0",
"mustache/mustache": "2.12.0",
"rmccue/requests": "1.7.0",
"symfony/config": "3.4.18",
"symfony/console": "3.4.18",
"symfony/debug": "3.4.18",
"symfony/dependency-injection": "3.4.18",
"symfony/event-dispatcher": "3.4.18",
"symfony/filesystem": "3.4.18",
"symfony/finder": "3.4.18",
"symfony/process": "3.4.18",
"symfony/translation": "3.4.18",
"symfony/yaml": "3.4.18",
"wp-cli/autoload-splitter": "0.1.5",
"wp-cli/mustangostang-spyc": "0.6.3",
"wp-cli/php-cli-tools": "0.11.10"
},
"require-dev": {
"behat/behat": "3.4.*",
"dealerdirect/phpcodesniffer-composer-installer": "0.4.4",
"phpunit/phpunit": "3.7.*",
"roave/security-advisories": "dev-master",
"wimg/php-compatibility": "8.2.0",
"wp-coding-standards/wpcs": "0.13.1"
},
"suggest": {
"psy/psysh": "Enhanced shell functionality"
},
"autoload": {
"psr-0": {
"EE": "php"
},
"psr-4": {
"": "php/commands/src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
},
"autoload-splitter": {
"splitter-logic": "EE\\AutoloadSplitter",
"splitter-location": "php/EE/AutoloadSplitter.php",
"split-target-prefix-true": "autoload_commands",
"split-target-prefix-false": "autoload_framework"
}
}
}