-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 960 Bytes
/
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
{
"name": "space48/magento2-environment-configuration",
"description": "Console command to set Magento configuration for a specified environment",
"authors": [
{
"name": "Dan Kenny",
"email": "[email protected]"
}
],
"license": "MIT",
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml"
},
"require": {
"magento/framework": "^100.1.0|^101.0|^102.0|^103.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"Space48\\EnvironmentConfiguration\\": "src"
},
"files": [
"src/registration.php"
]
},
"autoload-dev": {
"psr-4": {
"Space48\\EnvironmentConfiguration\\Test\\": "test"
}
}
}