forked from shopware5/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.02 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
57
58
59
60
61
62
63
64
{
"name": "shopware/shopware",
"description": "Shopware is the next generation of open source e-commerce software made in Germany",
"keywords": ["shopware", "shop"],
"homepage": "http://http://www.shopware.com",
"type": "project",
"license": [
"AGPL-3.0",
"proprietary"
],
"support": {
"forum": "http://forum.shopware.com",
"wiki": "http://wiki.shopware.com",
"source": "https://github.com/shopware/shopware",
"issues": "http://jira.shopware.de"
},
"require": {
"php": ">=5.3.2",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"symfony/http-kernel": "2.4.2",
"symfony/config": "2.4.2",
"symfony/dependency-injection": "2.4.2",
"symfony/validator": "2.4.2",
"symfony/filesystem": "2.4.2",
"symfony/finder": "2.4.2",
"symfony/console": "2.4.2",
"monolog/monolog": "1.6.0",
"ircmaxell/password-compat": "1.0.3",
"rhumsaa/array_column": "~1.1",
"doctrine/common": "2.4.1",
"doctrine/dbal": "2.4.1",
"doctrine/orm": "2.4.1"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"phpunit/dbunit": "@stable",
"behat/behat": "@stable",
"behat/mink": "@stable",
"behat/mink-extension": "@stable",
"behat/mink-sahi-driver": "@stable",
"behat/mink-goutte-driver": "@stable",
"sensiolabs/behat-page-object-extension": "*"
},
"autoload": {
"psr-0": {
"Doctrine\\ORM\\Persisters\\BasicEntityPersister": "engine/Library/",
"Shopware": "engine/",
"Enlight": "engine/Library/",
"Zend": "engine/Library/"
},
"psr-4": {
"Shopware\\Behat\\ShopwareExtension\\": "tests/Mink/Extension/ShopwareExtension"
},
"classmap": [
"engine/core/class/"
],
"files": ["engine/Shopware/Application.php"]
},
"config": {
"autoloader-suffix": "Shopware"
}
}