-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
56 lines (56 loc) · 1.32 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
{
"name": "hypernode/deployment",
"description": "Deployment tools for Hypernode",
"license": "MIT",
"type": "magento2-component",
"require": {
"php": "^7.0",
"magento/module-deploy": "100.2.*",
"magento/framework": "101.0.*",
"symfony/yaml": "^3.3"
},
"require-dev": {
"mediact/testing-suite": "^1.11",
"mediact/coding-standard-magento2": "@stable"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Hypernode\\Deployment\\": "src/"
}
},
"extra": {
"map": [
[
"src/.hypernode.ci.yml",
".hypernode.ci.yml"
]
],
"grumphp": {
"config-default-path": "vendor/mediact/testing-suite/config/default/grumphp.yml"
}
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"archive": {
"exclude": [
"/.gitignore",
"/phpunit.xml",
"/phpmd.xml",
"/phpstan.neon",
"/phpcs.xml",
"/package.json",
"/.eslintrc.json",
"/.eslintignore"
]
},
"config": {
"sort-packages": true
}
}