forked from sonata-project/ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (69 loc) · 2.74 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
{
"name": "sonata-project/ecommerce",
"description": "E-Commerce solution provided by Sonata",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]"
}
],
"require" : {
"symfony/http-foundation": "~2.3",
"symfony/form": "~2.3",
"symfony/validator": "~2.3",
"symfony/security-bundle": "~2.3",
"symfony/routing": "~2.3",
"symfony/config": "~2.3",
"symfony/console": "~2.3",
"symfony/process": "~2.3",
"symfony/twig-bridge": "~2.3",
"sonata-project/core-bundle": "~2.2@dev",
"sonata-project/doctrine-orm-admin-bundle": "~2.2@dev",
"sonata-project/media-bundle": "~2.2@dev",
"sonata-project/user-bundle": "~2.2@dev",
"sonata-project/intl-bundle": "~2.1",
"sonata-project/seo-bundle": "~1",
"sonata-project/classification-bundle": "~2.2",
"sonata-project/notification-bundle": "~2.2",
"sonata-project/comment-bundle": "~2.2@dev",
"friendsofsymfony/comment-bundle": "~2.0@dev",
"kriswallsmith/buzz": "0.*",
"knplabs/knp-menu-bundle": "~1.1",
"knplabs/knp-paginator-bundle": "~2.3",
"friendsofsymfony/user-bundle": "~1.3",
"jms/serializer-bundle": "~0.11",
"friendsofsymfony/rest-bundle": "~1.1",
"nelmio/api-doc-bundle": "~2.4"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0"
},
"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",
"Sonata\\Tests\\Component\\": "tests/Component",
"Sonata\\Tests\\BasketBundle\\": "tests/BasketBundle",
"Sonata\\Tests\\CustomerBundle\\": "tests/CustomerBundle",
"Sonata\\Tests\\DeliveryBundle\\": "tests/DeliveryBundle",
"Sonata\\Tests\\InvoiceBundle\\": "tests/InvoiceBundle",
"Sonata\\Tests\\OrderBundle\\": "tests/OrderBundle",
"Sonata\\Tests\\PaymentBundle\\": "tests/PaymentBundle",
"Sonata\\Tests\\PriceBundle\\": "tests/PriceBundle",
"Sonata\\Tests\\ProductBundle\\": "tests/ProductBundle"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.3.x-dev"
}
}
}