forked from packlink-dev/ecommerce_module_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·38 lines (38 loc) · 1018 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
{
"name": "packlink/integration-core",
"description": "Packlink integrations core library",
"type": "library",
"license": "proprietary",
"require": {
"php": ">=5.3.29",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Logeecom\\Infrastructure\\": "src/Infrastructure",
"Packlink\\BusinessLogic\\": "src/BusinessLogic",
"Packlink\\Brands\\": "src/Brands"
}
},
"autoload-dev": {
"psr-4": {
"Logeecom\\Tests\\Infrastructure\\": "tests/Infrastructure",
"Logeecom\\Tests\\BusinessLogic\\": "tests/BusinessLogic",
"Logeecom\\Tests\\Brands\\": "tests/Brands"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"codacy/coverage": "dev-master",
"leafo/scssphp": "0.0.12"
},
"scripts": {
"post-update-cmd": "php cssCompile.php",
"post-install-cmd": "php cssCompile.php"
},
"config": {
"platform": {
"php": "5.3.29"
}
}
}