-
Notifications
You must be signed in to change notification settings - Fork 433
/
composer.json
87 lines (87 loc) · 2.63 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
{
"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.3"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0",
"composer/composer": "2.2.24",
"composer/semver": "3.2.4",
"daverandom/libdns": "^2.0",
"easyengine/admin-tools-command": "v1.1.0",
"easyengine/auth-command": "v1.2.1",
"easyengine/config-command": "v1.0.2",
"easyengine/cron-command": "v2.1.0",
"easyengine/log-command": "v1.1.0",
"easyengine/mailhog-command": "v1.0.3",
"easyengine/service-command": "v1.6.1",
"easyengine/shell-command": "v1.1.2",
"easyengine/site-command": "v3.3.2",
"easyengine/site-type-php": "v1.8.1",
"easyengine/site-type-wp": "v1.8.1",
"monolog/monolog": "1.24.0",
"mustache/mustache": "2.14.1",
"rmccue/requests": "1.8.0",
"symfony/config": "4.4.*",
"symfony/console": "4.4.*",
"symfony/debug": "4.4.*",
"symfony/dependency-injection": "4.4.*",
"symfony/event-dispatcher": "4.4.*",
"symfony/filesystem": "4.4.*",
"symfony/finder": "4.4.*",
"symfony/process": "4.4.*",
"symfony/translation": "4.4.*",
"symfony/yaml": "4.4.*",
"wp-cli/mustangostang-spyc": "0.6.3",
"wp-cli/php-cli-tools": "0.11.10"
},
"require-dev": {
"behat/behat": "3.8.1",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.0",
"phpunit/phpunit": "9.5.*",
"phpcompatibility/php-compatibility": "8.2.0",
"wp-coding-standards/wpcs": "0.13.1"
},
"suggest": {
"psy/psysh": "Enhanced shell functionality"
},
"autoload": {
"psr-0": {
"EE\\": "php/"
},
"classmap": [
"php/class-ee.php",
"php/class-ee-db.php",
"php/class-ee-docker.php",
"php/class-ee-command.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
}
}