forked from sonata-project/ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 3.34 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "sonata-project/ecommerce",
"type": "symfony-bundle",
"description": "E-Commerce solution provided by Sonata",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/ecommerce/contributors"
}
],
"require" : {
"php": "^5.6 || ^7.0",
"cocur/slugify": "^1.4 || ^2.5",
"friendsofsymfony/rest-bundle": "^1.8 || ^2.2",
"jms/serializer-bundle": "^0.13 || ^1.5",
"knplabs/knp-menu-bundle": "^1.1 || ^2.1",
"knplabs/knp-paginator-bundle": "^2.6",
"kriswallsmith/buzz": "^0.15",
"nelmio/api-doc-bundle": "^2.13",
"sonata-project/admin-bundle": "^3.29",
"sonata-project/block-bundle": "^3.8",
"sonata-project/classification-bundle": "^3.3",
"sonata-project/comment-bundle": "^3.1",
"sonata-project/core-bundle": "^3.7",
"sonata-project/datagrid-bundle": "^2.3",
"sonata-project/doctrine-orm-admin-bundle": "^3.2",
"sonata-project/formatter-bundle": "^3.4",
"sonata-project/intl-bundle": "^2.4",
"sonata-project/media-bundle": "^3.10",
"sonata-project/notification-bundle": "^3.3",
"sonata-project/seo-bundle": "^2.4",
"sonata-project/user-bundle": "^3.6 || ^4.0",
"symfony/config": "^2.8",
"symfony/console": "^2.8",
"symfony/form": "^2.8",
"symfony/http-foundation": "^2.8",
"symfony/process": "^2.8",
"symfony/routing": "^2.8",
"symfony/security-bundle": "^2.8",
"symfony/twig-bridge": "^2.8",
"symfony/validator": "^2.8"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.4 || ^4.0"
},
"conflict": {
"jms/serializer": "<0.13",
"symfony/intl": "<2.8"
},
"autoload": {
"psr-4": {
"Sonata\\Component\\": "src/Component",
"Sonata\\BasketBundle\\": "src/BasketBundle",
"Sonata\\CustomerBundle\\": "src/CustomerBundle",
"Sonata\\DeliveryBundle\\": "src/DeliveryBundle",
"Sonata\\InvoiceBundle\\": "src/InvoiceBundle",
"Sonata\\OrderBundle\\": "src/OrderBundle",
"Sonata\\PaymentBundle\\": "src/PaymentBundle",
"Sonata\\PriceBundle\\": "src/PriceBundle",
"Sonata\\ProductBundle\\": "src/ProductBundle"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\Component\\Tests\\": "tests/Component",
"Sonata\\BasketBundle\\Tests\\": "tests/BasketBundle",
"Sonata\\CustomerBundle\\Tests\\": "tests/CustomerBundle",
"Sonata\\DeliveryBundle\\Tests\\": "tests/DeliveryBundle",
"Sonata\\InvoiceBundle\\Tests\\": "tests/InvoiceBundle",
"Sonata\\OrderBundle\\Tests\\": "tests/OrderBundle",
"Sonata\\PaymentBundle\\Tests\\": "tests/PaymentBundle",
"Sonata\\PriceBundle\\Tests\\": "tests/PriceBundle",
"Sonata\\ProductBundle\\Tests\\": "tests/ProductBundle"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}