forked from shopware5/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.32 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
65
66
67
68
69
70
{
"name": "shopware/shopware",
"description": "Shopware is the next generation of open source e-commerce software made in Germany",
"keywords": ["shopware", "shop"],
"homepage": "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.4.0",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"symfony/http-kernel": "2.6.6",
"symfony/config": "2.6.6",
"symfony/dependency-injection": "2.6.6",
"symfony/validator": "2.6.6",
"symfony/filesystem": "2.6.6",
"symfony/finder": "2.6.6",
"symfony/console": "2.6.6",
"monolog/monolog": "1.13.1",
"ircmaxell/password-compat": "1.0.4",
"ramsey/array_column": "1.1.3",
"doctrine/common": "2.4.2",
"doctrine/dbal": "2.4.2",
"doctrine/orm": "2.4.4",
"oyejorge/less.php": "1.7.0.3",
"guzzlehttp/guzzle": "5.1.0",
"egulias/email-validator": "1.2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"phpunit/dbunit": "~1.3",
"behat/behat": "~2.5",
"behat/mink": "~1.5",
"behat/mink-extension": "~1.3",
"behat/mink-sahi-driver": "~1.1",
"behat/mink-goutte-driver": "~1.0",
"sensiolabs/behat-page-object-extension": "~1.0"
},
"autoload": {
"psr-0": {
"Behat\\Mink\\Driver\\BrowserKitDriver": "engine/Library/",
"Doctrine\\Common\\Proxy\\AbstractProxyFactory": "engine/Library/",
"Doctrine\\ORM\\Persisters\\BasicEntityPersister": "engine/Library/",
"Shopware": "engine/",
"Enlight": "engine/Library/",
"Zend": "engine/Library/",
"JSMin": "engine/Library/minify/"
},
"psr-4": {
"Shopware\\Behat\\ShopwareExtension\\": "tests/Mink/Extension/ShopwareExtension"
},
"classmap": [
"engine/Shopware/Core/"
],
"files": ["engine/Shopware/Application.php"]
},
"config": {
"autoloader-suffix": "Shopware"
}
}