forked from ezsystems/ezpublish-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 4.96 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
{
"name": "ezsystems/ezpublish-community",
"description": "eZ Publish 5 community distribution",
"homepage": "http://share.ez.no",
"license": "GPL-2.0",
"authors": [
{
"name": "eZ Publish dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/ezpublish-community/contributors"
}
],
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.17",
"symfony/symfony": "2.3.*",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "2.3.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.3.*",
"sensio/distribution-bundle": "2.3.*",
"sensio/generator-bundle": "2.3.*",
"incenteev/composer-parameter-handler": "~2.0",
"tedivm/stash-bundle": "0.4.*",
"ezsystems/ezpublish-kernel": "dev-master",
"ezsystems/ezpublish-legacy": "dev-master",
"ezsystems/demobundle": "dev-master",
"ezsystems/comments-bundle": "dev-master",
"egulias/listeners-debug-command-bundle": "~1.9",
"white-october/pagerfanta-bundle": "1.0.*",
"whiteoctober/breadcrumbs-bundle": "~1.0.1",
"nelmio/cors-bundle": "~1.3",
"zetacomponents/archive": "dev-master#d0caff8",
"zetacomponents/authentication": "dev-master#c422670",
"zetacomponents/authentication-database-tiein": "dev-master#56d1e0a",
"zetacomponents/base": "dev-master#642f63a as 1.8.0",
"zetacomponents/cache": "dev-master#34fa794",
"zetacomponents/configuration": "dev-master#10ae09f",
"zetacomponents/console-tools": "dev-master#90156ab",
"zetacomponents/database": "dev-master#0e8ddef",
"zetacomponents/debug": "dev-master#0d8cc8f",
"zetacomponents/event-log": "dev-master#eee54a1",
"zetacomponents/feed": "dev-master#e0190e9",
"zetacomponents/image-conversion": "dev-master#36f34c8",
"zetacomponents/mail": "1.8.*@beta",
"zetacomponents/mvc-tools": "dev-master#6f2c1eb",
"zetacomponents/mvc-authentication-tiein": "dev-master#9bae3a7",
"zetacomponents/persistent-object": "dev-master#a4c8b95",
"zetacomponents/php-generator": "dev-master#b51935e",
"zetacomponents/signal-slot": "dev-master#74deb41",
"zetacomponents/system-information": "dev-master#6743362",
"hautelook/templated-uri-bundle": "~1.0",
"doctrine/dbal": "~2.5@beta",
"doctrine/doctrine-bundle": "~1.3@beta"
},
"conflict": {
"symfony/symfony": "2.3.9 | 2.3.14 | 2.3.15"
},
"require-dev": {
"behat/behat": "2.5.*",
"behat/symfony2-extension": "*",
"behat/sahi-client": "dev-master as 1.1.1",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"behat/mink-selenium-driver": "*",
"behat/mink-sahi-driver": "*",
"behat/mink-selenium2-driver": "*",
"ezsystems/behatbundle": "@dev",
"phpunit/phpunit": "3.7.*"
},
"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",
"eZ\\Bundle\\EzPublishLegacyBundle\\Composer\\ScriptHandler::installAssets",
"eZ\\Bundle\\EzPublishCoreBundle\\Composer\\ScriptHandler::dumpAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"eZ\\Bundle\\EzPublishLegacyBundle\\Composer\\ScriptHandler::installLegacyBundlesExtensions"
],
"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",
"eZ\\Bundle\\EzPublishLegacyBundle\\Composer\\ScriptHandler::installAssets",
"eZ\\Bundle\\EzPublishCoreBundle\\Composer\\ScriptHandler::dumpAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"eZ\\Bundle\\EzPublishLegacyBundle\\Composer\\ScriptHandler::installLegacyBundlesExtensions"
]
},
"config": {
"process-timeout": 3000,
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "ezpublish",
"symfony-web-dir": "web",
"ezpublish-legacy-dir": "ezpublish_legacy",
"_symfony-assets-install_comment_": "One of 'symlink', 'relative' (symlinks) or 'hard'",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "ezpublish/config/parameters.yml"
}
}
}