forked from ezsystems/ezplatform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
117 lines (117 loc) · 4.21 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
{
"name": "ezsystems/ezplatform",
"description": "eZ Platform distribution",
"homepage": "https://github.com/ezsystems/ezplatform",
"license": "GPL-2.0-only",
"type": "project",
"authors": [
{
"name": "eZ dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/ezplatform/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",
"symfony/symfony": "^3.4.2",
"twig/twig": "^1.0||^2.0",
"twig/extensions": "^1.5.1",
"symfony/assetic-bundle": "^2.8.2",
"symfony/swiftmailer-bundle": "^3.2.2",
"symfony/monolog-bundle": "^3.3.0",
"doctrine/doctrine-bundle": "^1.9.1",
"doctrine/orm": "^2.5",
"sensio/distribution-bundle": "^5.0.22",
"incenteev/composer-parameter-handler": "^2.1.3",
"ezsystems/ezpublish-kernel": "^7.4@dev",
"ezsystems/repository-forms": "^2.4@dev",
"ezsystems/ezplatform-solr-search-engine": "^1.5@dev",
"ezsystems/ez-support-tools": "^0.2@dev",
"ezsystems/ezplatform-http-cache": "^0.9@dev",
"ezsystems/ezplatform-admin-ui": "^1.4@dev",
"ezsystems/ezplatform-admin-ui-modules": "^1.4@dev",
"ezsystems/ezplatform-admin-ui-assets": "^3.1@dev",
"ezsystems/ezplatform-design-engine": "^2.0@dev",
"ezsystems/ezplatform-standard-design": "^0.1@dev",
"ezsystems/ezplatform-cron": "^2.0@dev",
"knplabs/knp-menu-bundle": "^2.2.1",
"willdurand/js-translation-bundle": "^2.6.6",
"friendsofsymfony/jsrouting-bundle": "^1.6.3",
"white-october/pagerfanta-bundle": "^1.2",
"roave/security-advisories": "dev-master",
"leafo/scssphp": "^0.7.6",
"symfony/thanks": "^1.0.7"
},
"require-dev": {
"behat/behat": "^3.4.3",
"behat/symfony2-extension": "^2.1.5",
"behat/mink-extension": "^2.3.1",
"behat/mink-goutte-driver": "^1.2.1",
"behat/mink-selenium2-driver": "^1.3.1",
"bex/behat-screenshot": "^1.2",
"ezsystems/behatbundle": "^6.5.3",
"ezsystems/behat-screenshot-image-driver-cloudinary": "^1.0",
"phpunit/phpunit": "^6.4.4",
"sensio/generator-bundle": "^3.1.7",
"symfony/phpunit-bridge": "^3.4.11"
},
"conflict": {
"symfony/symfony": "3.4.9||3.4.12||3.4.16",
"doctrine/dbal": "2.7.0"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"eZ\\Bundle\\EzPublishCoreBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"@php bin/console bazinga:js-translation:dump --merge-domains",
"@php bin/console assetic:dump"
],
"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": {
"ezsystems/*": "dist"
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"keep-outdated": true,
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.4.x-dev"
}
}
}