-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.13 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
{
"name": "smartdevs/elasticommerce-vagrant",
"description": "Smart-Devs Elasticommerce development environment",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "http://magento-lts.repositories.smart-devs.net/"
},
{
"type": "composer",
"url": "https://packages.firegento.com"
},
{
"type": "path",
"url": ".modman/*/"
}
],
"require": {
"smartdevs/magento-lts-core": "dev-master",
"elasticsearch/elasticsearch": "~5.3",
"smart-devs/elasticommerce-magento": "*",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~6.4"
},
"autoload": {
"psr-4": {
"SmartDevs\\ElastiCommerce\\": "src/ElastiCommerce/elasticommerce-base/src/"
}
},
"autoload-dev": {
"psr-4": {
"SmartDevs\\ElastiCommerce\\Test\\": "test/ElastiCommerce/elasticommerce-base/tests/"
}
},
"config": {
"bin-dir": "bin",
"use-include-path": true,
"secure-http": false
},
"extra": {
"skip-suggest-repositories": true,
"magento-root-dir": "htdocs",
"magento-force": true,
"magento-deploystrategy": "symlink"
}
}