-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "speckcommerce/speck-catalog",
"description": "catalog + manager module for the ecommerce platform SpeckCommerce",
"license": "BSD-2-Clause",
"type": "library",
"minimum-stability": "dev",
"keywords": [
"zf2",
"speckcommerce"
],
"homepage": "http://github.com/speckcommerce/SpeckCatalog",
"authors": [
{
"name": "Nigel Lundsten",
"email": "[email protected]",
"homepage": "http://nlundsten.com"
}
],
"require": {
"php": ">=5.4",
"zendframework/zendframework": "~2.4",
"zf-commons/zfc-admin": "0.1.*",
"speckcommerce/speck-contact": "dev-master",
"speckcommerce/speck-cart": "dev-master",
"speckcommerce/speck-multisite": "dev-master",
"evandotpro/edp-sub-layout" : "dev-master"
},
"require-dev": {
"mockery/mockery": ">=0.7.2",
"phpunit/phpunit": "~4.4",
"zf-commons/zfc-base": "dev-master",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"psr-0": {
"SpeckCatalog": "src/"
},
"classmap": [
"./Module.php"
]
}
}