forked from magento/magento-cloud-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
111 lines (111 loc) · 3.08 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "magento/magento-cloud-docker",
"description": "Magento Cloud Docker",
"type": "magento2-component",
"version": "1.3.2",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"composer/composer": "^1.4 || ^2.0",
"composer/semver": "@stable",
"illuminate/config": "^5.5||^8.77",
"symfony/config": "^4.4 || ^5.1",
"symfony/console": "^2.8 || ^4.0 || ^5.1",
"symfony/dependency-injection": "^3.3 || ^4.3 || ^5.1",
"symfony/yaml": "^3.3 || ^4.0 || ^5.1"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.2",
"codeception/module-db": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.2",
"consolidation/robo": "^1.2",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.5 || ^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"bin": [
"bin/ece-docker"
],
"autoload": {
"psr-4": {
"Magento\\CloudDocker\\": "src/",
"Magento\\CloudDocker\\Test\\Integration\\": "tests/integration",
"Magento\\CloudDocker\\Test\\Functional\\": "tests/functional/"
}
},
"scripts": {
"test:all": [
"@test:phpstan",
"@test:phpcs",
"@test:phpmd",
"@test:unit",
"@test:integration"
],
"test:phpstan": "phpstan analyse -c tests/static/phpstan.neon",
"test:phpcs": "phpcs src --standard=tests/static/phpcs-ruleset.xml -p -n",
"test:phpmd": "phpmd src xml tests/static/phpmd-ruleset.xml",
"test:unit": "phpunit --configuration tests/unit",
"test:integration": "phpunit --configuration tests/integration"
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"extra": {
"map": [
[
"dist/docker-sync.yml",
"docker-sync.yml"
],
[
"dist/mutagen.sh",
"mutagen.sh"
],
[
"dist/php.dev.ini",
"php.dev.ini"
],
[
"dist/mnt",
".docker/mnt"
],
[
"dist/tmp",
".docker/tmp"
],
[
"dist/mysql",
".docker/mysql"
],
[
"dist/mysql-sales",
".docker/mysql-sales"
],
[
"dist/mysql-quote",
".docker/mysql-quote"
],
[
"dist/bin/magento-docker",
"bin/magento-docker"
]
],
"chmod": [
{
"mask": "0755",
"path": "bin/magento-docker"
},
{
"mask": "0755",
"path": "mutagen.sh"
}
]
}
}