-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
142 lines (142 loc) · 5.5 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "emodric/ezplatform-legacy",
"description": "eZ Platform distribution",
"homepage": "https://github.com/emodric/ezplatform-legacy",
"license": "GPL-2.0-only",
"type": "project",
"authors": [
{
"name": "eZ dev-team & eZ Community",
"homepage": "https://github.com/emodric/ezplatform-legacy/contributors"
}
],
"replace": {
"ezsystems/ezpublish-community": "*"
},
"autoload": {
"psr-4": {
"AppBundle\\": "src/AppBundle/"
},
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" },
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
"require": {
"php": "^7.1.3",
"doctrine/doctrine-bundle": "^1.9.1",
"doctrine/orm": "^2.6.3",
"ezsystems/doctrine-dbal-schema": "^0.1",
"ezsystems/ez-support-tools": "^1.0",
"ezsystems/ezplatform-admin-ui": "~1.5.0",
"ezsystems/ezplatform-admin-ui-assets": "^4.1.0",
"ezsystems/ezplatform-admin-ui-modules": "~1.5.0",
"ezsystems/ezplatform-core": "^1.0",
"ezsystems/ezplatform-cron": "^2.0",
"ezsystems/ezplatform-design-engine": "^2.0",
"ezsystems/ezplatform-graphql": "^1.0",
"ezsystems/ezplatform-http-cache": "^0.9",
"ezsystems/ezplatform-matrix-fieldtype": "^1.0",
"ezsystems/ezplatform-richtext": "^1.1",
"ezsystems/ezplatform-solr-search-engine": "^1.6",
"ezsystems/ezplatform-standard-design": "^0.2",
"ezsystems/ezplatform-user": "^1.0",
"ezsystems/ezpublish-kernel": "~7.5.0",
"ezsystems/ezpublish-legacy": ">=2019.03",
"ezsystems/legacy-bridge": "^2.1",
"ezsystems/repository-forms": "~2.5.0",
"ezsystems/symfony-tools": "~1.0.0",
"netgen/richtext-datatype-bundle": "^1.1",
"netgen/ezplatformsearch": "^1.2.2",
"friendsofsymfony/jsrouting-bundle": "^1.6.3",
"incenteev/composer-parameter-handler": "^2.1.3",
"knplabs/knp-menu-bundle": "^2.2.1",
"overblog/graphql-bundle": "^0.11.11",
"scssphp/scssphp": "~1.0",
"sensio/distribution-bundle": "^5.0.23",
"sensiolabs/security-checker": "^5.0",
"symfony/assetic-bundle": "^2.8.2",
"symfony/monolog-bundle": "^3.3.1",
"symfony/swiftmailer-bundle": "^3.2.4",
"symfony/symfony": "^3.4.18",
"symfony/thanks": "^1.1.0",
"symfony/webpack-encore-bundle": "^1.0.0",
"twig/extensions": "^1.5.3",
"twig/twig": "^2.5",
"white-october/pagerfanta-bundle": "^1.2.2",
"willdurand/js-translation-bundle": "^2.6.6"
},
"require-dev": {
"behat/behat": "^3.5.0",
"behat/mink-extension": "^2.3.1",
"behat/mink-goutte-driver": "^1.2.1",
"behat/mink-selenium2-driver": "^1.3.1",
"behat/symfony2-extension": "^2.1.5",
"bex/behat-screenshot": "^1.2.7",
"ezsystems/behat-screenshot-image-driver-cloudinary": "^1.1",
"ezsystems/behatbundle": "^6.5.4",
"overblog/graphiql-bundle": "^0.1.2",
"phpunit/phpunit": "^7.2.6",
"sensio/generator-bundle": "^3.1.7",
"symfony/phpunit-bridge": "^4.1.1",
"liuggio/fastest": "^1.6"
},
"conflict": {
"symfony/symfony": "3.4.9||3.4.12||3.4.16",
"doctrine/dbal": "2.7.0",
"twig/twig": "2.6.1",
"symfony/webpack-encore-bundle": "1.2.0||1.2.1"
},
"scripts": {
"legacy-scripts": [
"eZ\\Bundle\\EzPublishLegacyBundle\\Composer\\ScriptHandler::installAssets",
"eZ\\Bundle\\EzPublishLegacyBundle\\Composer\\ScriptHandler::installLegacyBundlesExtensions",
"eZ\\Bundle\\EzPublishLegacyBundle\\Composer\\ScriptHandler::generateAutoloads"
],
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"eZ\\Bundle\\EzPublishCoreBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"@legacy-scripts",
"@php bin/console bazinga:js-translation:dump web/assets --merge-domains",
"@php bin/console assetic:dump",
"yarn install",
"EzSystems\\EzPlatformEncoreBundle\\Composer\\ScriptHandler::compileAssets",
"@php bin/security-checker security:check"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
],
"post-create-project-cmd": [
"eZ\\Bundle\\EzPublishCoreBundle\\Composer\\ScriptHandler::installWelcomeText"
],
"ezplatform-install": [
"@php bin/console ezplatform:install clean"
]
},
"config": {
"bin-dir": "bin",
"preferred-install": "dist"
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"ezpublish-legacy-dir": "ezpublish_legacy",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"keep-outdated": true,
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.5.x-dev"
}
}
}