forked from orfin/WellCommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·97 lines (97 loc) · 3.59 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
91
92
93
94
95
96
97
{
"name": "wellcommerce/wellcommerce",
"license": "MIT",
"minimum-stability": "dev",
"description": "WellCommerce Open-Source edition",
"keywords": ["symfony","e-commerce","open-source"],
"authors": [
{
"name": "Adam Piotrowski",
"email": "[email protected]"
},
{
"name": "WellCommerce Developers",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/WellCommerce/WellCommerce/issues",
"source": "https://github.com/WellCommerce/WellCommerce/"
},
"autoload": {
"psr-4": {
"WellCommerce\\Bundle\\": "src/WellCommerce/Bundle",
"WellCommerce\\Component\\": "src/WellCommerce/Component"
},
"files": [ "app/AppKernel.php" ]
},
"require": {
"php": "^5.6|^7.0",
"symfony/symfony": "^3.0",
"doctrine/orm": "2.5.2",
"twig/extensions": "1.3.x-dev",
"sensio/distribution-bundle": "^5.0@dev",
"sensio/framework-extra-bundle": "^3.0",
"incenteev/composer-parameter-handler": "^2.0",
"knplabs/doctrine-behaviors": "dev-master",
"fzaninotto/faker": "1.5.0",
"friendsofsymfony/jsrouting-bundle": "^2.0@dev",
"willdurand/js-translation-bundle": "^2.6@dev",
"liip/imagine-bundle": "^1.3",
"symfony-cmf/routing": "^1.3",
"beberlei/DoctrineExtensions": "1.0.*@dev",
"symfony/assetic-bundle": "^2.7@dev",
"symfony/monolog-bundle": "^2.7@dev",
"symfony/swiftmailer-bundle": "^2.3@dev",
"doctrine/doctrine-migrations-bundle": "^1.0@dev",
"twig/twig": "^1.2@dev",
"wellcommerce/composer-plugin": "^1.0@dev",
"react/child-process": "0.5.*@dev",
"knplabs/packagist-api": "1.*@dev",
"mcuelenaere/composer-revision-plugin": "0.1.*",
"devristo/phpws": "dev-master",
"nesbot/carbon": "dev-master",
"zendframework/zendsearch": "dev-master",
"zendframework/zend-json": "^2.6@dev",
"mmoreram/simple-doctrine-mapping": "^1.1",
"league/oauth2-facebook": "~1.0",
"wingu/code-generator": "^1.0"
},
"require-dev": {
"sensio/generator-bundle": "^3.0@dev",
"doctrine/doctrine-fixtures-bundle": "^2.2",
"phpunit/phpunit": "^5.0@dev"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"build-bootstrap": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "0.7.x-dev"
}
}
}