forked from akeneo/pim-community-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
119 lines (119 loc) · 4.58 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "akeneo/pim-community-dev",
"description": "Akeneo PIM, the future of catalog management is open !",
"license": "OSL-3.0",
"authors": [
{
"name": "Akeneo",
"homepage": "http://www.akeneo.com"
}
],
"autoload": {
"psr-0": {
"": "src/",
"Context": "features/",
"OroEmail\\": "app/emails/"
}
},
"require": {
"php": ">=5.4.4",
"knplabs/knp-gaufrette-bundle": "0.1.7",
"knplabs/gaufrette": "0.1.8",
"incenteev/composer-parameter-handler": "2.1.0",
"symfony/icu": "1.1.0",
"akeneo/measure-bundle": "0.2.*",
"akeneo/batch-bundle": "0.3.*",
"oro/platform": "1.0.0-beta14",
"apy/jsfv-bundle": "2.0.1",
"doctrine/common": "2.4.*",
"doctrine/doctrine-bundle": "1.2.*",
"doctrine/doctrine-fixtures-bundle": "2.2.*",
"friendsofsymfony/rest-bundle": "0.12.*",
"liip/imagine-bundle": "0.17.*",
"jms/serializer-bundle": "0.13.*",
"symfony/monolog-bundle": "2.3.*",
"monolog/monolog": "1.10.*",
"symfony/symfony": "2.3.18",
"sensio/framework-extra-bundle": "2.3.*",
"nelmio/api-doc-bundle": "2.4.*",
"knplabs/knp-menu-bundle":"v2.0.0-alpha2",
"knplabs/knp-menu":"v2.0.0-alpha2",
"gedmo/doctrine-extensions":"2.3.x-dev@dev",
"dompdf/dompdf" : "0.6.1"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"squizlabs/php_codesniffer": "1.*",
"pdepend/pdepend": "1.1.*",
"phpmd/phpmd": "1.*",
"behat/behat": "2.5.*",
"kriswallsmith/buzz": ">=0.5",
"behat/common-contexts": "*",
"behat/gherkin":"2.3.x-dev#c32e15d@dev",
"behat/mink":"dev-master#63b8b26@dev",
"behat/mink-browserkit-driver": "*@dev",
"behat/mink-extension": "1.3.*@dev",
"behat/mink-selenium2-driver": "*@dev",
"behat/symfony2-extension": "1.1.*@dev",
"behat/transliterator":"dev-master#2fd406d@dev",
"sensiolabs/behat-page-object-extension": "1.0.x-dev#6692ad7237597d1f7acfdacf1c7bbb138f56e3a9",
"phpspec/phpspec": "2.1.0-RC1",
"akeneo/phpspec-skip-example-extension": "1.0.*",
"doctrine/migrations": "1.0.*@dev",
"doctrine/doctrine-migrations-bundle": "1.0.0-RC1"
},
"suggest": {
"doctrine/mongodb-odm-bundle": "In order to activate the MongoDB support within Akeneo"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/akeneo/platform.git",
"branch": "master"
}
],
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"php app/console fos:js-routing:dump --target=web/js/routes.js"
],
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"php app/console fos:js-routing:dump --target=web/js/routes.js"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "symlink",
"incenteev-parameters": {
"keep-outdated": true,
"file": "app/config/parameters.yml",
"env-map": {
"database_host": "PIM_DATABASE_HOST",
"database_port": "PIM_DATABASE_PORT",
"database_name": "PIM_DATABASE_NAME",
"database_user": "PIM_DATABASE_USER",
"database_password": "PIM_DATABASE_PASSWORD"
}
},
"branch-alias": {
"dev-master": "1.3.x-dev",
"dev-1.2": "1.2.x-dev",
"dev-1.1": "1.1.x-dev",
"dev-1.0": "1.0.x-dev"
}
}
}