This repository has been archived by the owner on Nov 30, 2017. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
70 lines (68 loc) · 2.68 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
{
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"doctrine/orm": "*",
"fzaninotto/faker": "*",
"symfony/symfony": "*",
"twig/extensions": "*",
"avalanche123/imagine-bundle": "*",
"doctrine/doctrine-bundle": "*",
"doctrine/doctrine-fixtures-bundle": "*",
"doctrine/doctrine-migrations-bundle": "*",
"friendsofsymfony/comment-bundle": "*",
"friendsofsymfony/rest-bundle": "*",
"friendsofsymfony/user-bundle": "1.3.1",
"jms/serializer-bundle": "*",
"knplabs/knp-markdown-bundle": "*",
"knplabs/knp-menu-bundle": "*",
"mopa/bootstrap-bundle": "*",
"sensio/distribution-bundle": "*",
"stof/doctrine-extensions-bundle": "*",
"sylius/addressing-bundle": "*",
"sylius/assortment-bundle": "*",
"sylius/cart-bundle": "*",
"sylius/categorizer-bundle": "*",
"sylius/taxonomies-bundle": "*",
"sylius/taxation-bundle": "*",
"sylius/shipping-bundle": "*",
"sylius/flow-bundle": "*",
"sylius/inventory-bundle": "*",
"sylius/sales-bundle": "*",
"sylius/blogger-bundle": "*",
"sylius/settings-bundle": "*",
"symfony/assetic-bundle": "*",
"symfony/monolog-bundle": "*",
"liip/doctrine-cache-bundle": "dev-master",
"symfony/swiftmailer-bundle": "*"
},
"require-dev": {
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"behat/symfony2-extension": "*",
"phpspec/phpspec2": "dev-develop"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "sandbox",
"symfony-web-dir": "public"
},
"autoload": {
"psr-0": {
"Sylius\\Bundle\\SandboxBundle": "src/",
"Sylius\\Behat": "features/"
}
}
}